Skip to content

Sys\_SetFileAssociation

Sets file association for a given extension

Sys_SetFileAssociation(sExtenstion, sAction, sCommand, bOverwriteExisting) As Boolean

sExtenstion (String)

System restore point description

sAction (String)

The action to create

sCommand (String)

The command to execute when the action is activated

bOverwriteExisting (String)

Overwrite association if it already exists

VBScript

'Program.exe takes a file as a launch parameter which is supplied by Windows by %1
If bStatus Then bStatus = Sys_SetFileAssociation(".extension", "Open", gsProgramFiles & "\Program\Program.exe %1", True)

Scripting Guidelines