Jump to content

phudson

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by phudson

  1. Since this kb3172985 update was installed it appears to have "Broke" GPOs used for printing. We have added authenticated user and domain computers to the GPO and enabled point and print drivers with do not show warning or elevation prompt. However in the event log when we run a GPupdate /force it says it cannot download the drivers, gives the error code 0X80070bcb. I can uninstall kb3172985 and the GPO works with no issue. We are also seeing the similar issue on windows 7. Can any one suggest something that we may have not have tried yet? Thanks.
  2. Thanks that worked!!! for /f %%i in (%~d0\SoftwareDeployment\Lists\Computers.txt) do start robocopy %~d0\Softwaredeployment\SD\ \\%%i\C$\ /e exit
  3. I have a script and a .txt file that has a list of computers. Below is the batch file i run to copy the SD folder to the listed computers. for /f %%i in (c:\SD\Computers.txt) do robocopy C:\SD\ \\%%i\C$\ /E Pause. Right now the batch file copy's all contents of the SD folder to each computer one at a time. What could i do to make to copy to all the computers at the same time? Also i don't care its is VBS or any other language even powershell. Thanks for any advice.
  4. Removing the echo off didn't work. it return with start /w "" C:\software\installers\install.exe -i silent Maybe psexec is not made to start scripts to silent install programs. My plan was to kick off the script from each computer detaching from them and in the script was the silent install command to install the software. Im at a loss....
  5. PSexec will not run a bat file that is set to silently install programs. Here is what im ruining for psexec to launch the bat file on the computers. The computers are not logged in they are at the CTRL alt del screen and awake. when ran it shows connecting them that goes away and it just sits there. What am i doing wrong guys and gals? for /f %%a in (%~d0\SoftwareDeployment\Lists\Computers.txt) do psexec \\%%a C:\SD\scripts\install.bat Pause This is the bat file that is on the local machine along with its installers. [font=verdana] [font=Verdana]@Echo OFF[/font][/font] start /w "" C:\SD\installers\install.exe -i silent [font=verdana][font=Verdana]start /w "" C:\SD\installers\FlashEXEPI18.exe -install [/font] Also i have tried this with VBS and still no luck [/font] admin computer for /f %%a in (%~d0\SoftwareDeployment\Lists\Computers.txt) do psexec \\%%a cscript.exe //B C:\SD\scripts\start.vbs Pause Code on remote computer CreateObject("Wscript.Shell").Run "C:\SD\Tabe182.exe -i silent", 0, True CreateObject("Wscript.Shell").Run "C:\SD\installers\FlashEXEPI18.exe -install", 0, True
  6. phudson

    RichCopy

    How can i use RichCopy4.0 to copy A folder and its contents from one source to multiple Destinations? The Destination are multiple computers. Thanks
×
×
  • Create New...