Script help
Hi everyone,
I am totally helpless with scripting, but need to push out an activex controller for report printing.
Can anyone please help with how am I going this, I'm sure its easy but I am totally useless at scripting.
Below is what i need to do:
For a silent deployment of RSClientPrint.cab, you only need to distribute RSClientPrint.dll file and the .rll files.
If you copy the files listed below under the folder C:\WINNT\system32 for client computers.
RSClientPrint.dll
RSClientPrint_1028.rll
RSClientPrint_1031.rll
RSClientPrint_1033.rll
RSClientPrint_1036.rll
RSClientPrint_1040.rll
RSClientPrint_1041.rll
RSClientPrint_1042.rll
RSClientPrint_1043.rll
RSClientPrint_1046.rll
RSClientPrint_1053.rll
RSClientPrint_2052.rll
RSClientPrint_3082.rll
Register the RSClientPrint.dll dll file by running the regsvr32.exe command on the command prompt shown as below.
c:\regsvr32.exe /s
c:\winnt\system32 \rsclientprint.dll
Thanks
Scott
I am totally helpless with scripting, but need to push out an activex controller for report printing.
Can anyone please help with how am I going this, I'm sure its easy but I am totally useless at scripting.
Below is what i need to do:
For a silent deployment of RSClientPrint.cab, you only need to distribute RSClientPrint.dll file and the .rll files.
If you copy the files listed below under the folder C:\WINNT\system32 for client computers.
RSClientPrint.dll
RSClientPrint_1028.rll
RSClientPrint_1031.rll
RSClientPrint_1033.rll
RSClientPrint_1036.rll
RSClientPrint_1040.rll
RSClientPrint_1041.rll
RSClientPrint_1042.rll
RSClientPrint_1043.rll
RSClientPrint_1046.rll
RSClientPrint_1053.rll
RSClientPrint_2052.rll
RSClientPrint_3082.rll
Register the RSClientPrint.dll dll file by running the regsvr32.exe command on the command prompt shown as below.
c:\regsvr32.exe /s
c:\winnt\system32 \rsclientprint.dll
Thanks
Scott
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
cmccracken
13 years ago
Hey Scott,
I push the RS printer out as a managed install (I would upload it but it doesn't fit).
My setup.bat file (in same folder as required files) is:
Casey
I push the RS printer out as a managed install (I would upload it but it doesn't fit).
My setup.bat file (in same folder as required files) is:
xcopy RSClientPrint.dll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1028.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1031.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1033.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1036.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1040.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1041.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1042.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1043.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1046.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_1053.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_2052.rll %WINDIR%\system32 /c /y
xcopy RSClientPrint_3082.rll %WINDIR%\system32 /c /y
regsvr32 /s %WINDIR%\system32\rsclientprint.dll
Casey
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.