Thanks to PHV for getting me going on this!!
I'd like to use a script to change registry settings on remote PCs
1. ask what PC
2. copy the designated registry settin from mine to what ever PC i designated in question 1
--------------------
could someone help me with the what I would need to change on the following?
script
-----------------------------------
Dim pcName, intAnswer
Set WShell = CreateObject("WScript.Shell")
Do
pcName = Inputbox("Enter Computer Name","Enter Target for Copy")
If Trim(pcName) = "" Then Exit Do
WShell.Run "c:\Powerpush\copy.bat " & pcName
intAnswer = _
Msgbox("Do you want to do another?", _
vbYesNo, "Kris Rules")
Loop While intAnswer = vbYes
----------------------------------
bat file associated
---------------------------------
c:
mkdir "\\%1\c$\program files\XXXXX\YYYY\ZZZZZ"
xcopy "c:\program Files\XXXXX\YYYY\*.*" "\\%1\C$\XXXXX\YYYY\ZZZZZ\" /e
any ideas ?
I'd like to use a script to change registry settings on remote PCs
1. ask what PC
2. copy the designated registry settin from mine to what ever PC i designated in question 1
--------------------
could someone help me with the what I would need to change on the following?
script
-----------------------------------
Dim pcName, intAnswer
Set WShell = CreateObject("WScript.Shell")
Do
pcName = Inputbox("Enter Computer Name","Enter Target for Copy")
If Trim(pcName) = "" Then Exit Do
WShell.Run "c:\Powerpush\copy.bat " & pcName
intAnswer = _
Msgbox("Do you want to do another?", _
vbYesNo, "Kris Rules")
Loop While intAnswer = vbYes
----------------------------------
bat file associated
---------------------------------
c:
mkdir "\\%1\c$\program files\XXXXX\YYYY\ZZZZZ"
xcopy "c:\program Files\XXXXX\YYYY\*.*" "\\%1\C$\XXXXX\YYYY\ZZZZZ\" /e
any ideas ?