Hi,
I have a script that adds a file type into the registry. my problem is that it needs to be run for each user that logs into the PC. Is it just as simple as an Admin user or is there another setting in the registry I need to set up.
Thanks in advance for any help.
daniel.
Here is install.cmd
assoc .ldf=StaticView
ftype StaticView=C:\GIV\StaticView.exe "%%1"
regedit /s staticview.reg
Here is staticview.reg:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\StaticView]
"EditFlags"=dword:00010000
"BrowserFlags"=dword:00000008
@="StaticView"
[HKEY_CLASSES_ROOT\StaticView\Shell]
@="C:\\GIV\\StaticView.exe,0" "%1"
I have a script that adds a file type into the registry. my problem is that it needs to be run for each user that logs into the PC. Is it just as simple as an Admin user or is there another setting in the registry I need to set up.
Thanks in advance for any help.
daniel.
Here is install.cmd
assoc .ldf=StaticView
ftype StaticView=C:\GIV\StaticView.exe "%%1"
regedit /s staticview.reg
Here is staticview.reg:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\StaticView]
"EditFlags"=dword:00010000
"BrowserFlags"=dword:00000008
@="StaticView"
[HKEY_CLASSES_ROOT\StaticView\Shell]
@="C:\\GIV\\StaticView.exe,0" "%1"