vbscript: Added shell registry for VBSFile.

This commit is contained in:
Jacek Caban 2012-08-14 12:02:01 +02:00 committed by Alexandre Julliard
parent a97f81ff32
commit 7931c23fef
1 changed files with 19 additions and 0 deletions

View File

@ -59,5 +59,24 @@ HKCR
ForceRemove VBSFile = s 'VBScript Script File'
{
ScriptEngine = s 'VBScript'
Shell = s 'Open'
{
Edit
{
Command = s '"%%SystemRoot%%\system32\notepad.exe" %%1'
}
Open
{
Command = s '"%%SystemRoot%%\system32\wscript.exe" "%%1" %%*'
}
Open2
{
Command = s '"%%SystemRoot%%\system32\cscript.exe" "%%1" %%*'
}
Print
{
Command = s '"%%SystemRoot%%\system32\notepad.exe" /p %%1'
}
}
}
}