Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Junbron

    Delete Schedul Task from multiple servers

    heres a script to delete an specific task in a machine.. can anyone please be able to help to add a script for me to be able to delete that specific Task from multiple servers.. I have a list of the server in txt file.. Thanks Dim objShell As Object Set objShell =...
  2. Junbron

    Delete disable Documents and Settings profile folder

    Hi , Is there any script out there that delete documents and settins profile folder if the user is disable? We have a script that delete profile folders with X amount of time.. But id to find a script that delete the profile folders that the user profile is disable...
  3. Junbron

    Disable Profile Delete Folder

    Hi , Is there any script out there that delete documents and settins profile folder if the user is disable? We have a script that delete profile folders with X amount of time.. But id to find a script that delete the profile folders that the user profile is disable...
  4. Junbron

    Adding list and report to a script

    got this script to stop start services --- On Error Resume Next 'start with getting the local computer name strComputer = "." 'now stop the services Set objWMI = getobject("winmgmts://" & strComputer) StopService ("Spooler") WScript.Sleep 3000 StartService ("Spooler") 'sub to stop the...
  5. Junbron

    File version and exist issue loop

    I have this scrpit below... but getting error saying Line 40 Code 800A03EA and i added in the original script are Else if objFSO.FileExists("C:\orant\BIN\GLAHE11I.EXE") then do while not oFile.atendofstream strPCNum=oFile.readline if Ping(strPCNum) = False Then...
  6. Junbron

    Outlook 2003 freezes when sending PDF attachments.

    yup exacly the same issue eh... cant be bother writing them down again which it exactly the same issue.. Tried uninstall and reinstall office and adobe.. and still the same issue..
  7. Junbron

    Outlook 2003 freezes when sending PDF attachments.

    I am the network admin, and several users are reporting that Outlook 2003 freezes when sending PDF attachments. It started with just one user, but now I have about 10 that are reporting the problem. There could be more, but they are not reporting it. When they send an e-mail with a PDF...
  8. Junbron

    Function line issue to restart a service..

    Thanks the funnction not the issue anymore... -----its the last code.. ============================== Const ForReading = 1 On Error Resume Next dim objFSO, strFile, strFilePath, OFile, oFile2, strPCNum, strOutputFile, strRemoteFile, strFileVersion, strOutText Set objFSO =...
  9. Junbron

    Function line issue to restart a service..

    I am trying to create a Script to stop and start a Service...for a list of machines Below is my code,... I kept on getting an issue with The Function Line???? ======== Const ForReading = 1 dim objFSO, strFile, strFilePath, OFile, oFile2, strPCNum, strOutputFile, strRemoteFile, strFileVersion...
  10. Junbron

    Transfer Replace File to Multiple Machines

    sorryy.. here we go -=============== Const DestinationFile = "c:\destfolder\anyfile.txt" Const SourceFile = "c:\sourcefolder\anyfile.txt" Set fso = CreateObject("Scripting.FileSystemObject") 'Check to see if the file already exists in the destination folder If...
  11. Junbron

    Transfer Replace File to Multiple Machines

    Hi ... I have an updated file and i want to transfer that single file to multiple servers and will overwrite the oldfile... Need a vbscript to do this.. And is possible to do this without using xcopy ? THanks
  12. Junbron

    Transfer file to multiple servers Script

    ' Set the Time Zone Offset from Greenwich Mean Time On Error Resume Next strComputer = "." 'Change value to reflect desired GMT offset in minutes. intGMTOffset = -480 Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set...
  13. Junbron

    Transfer file to multiple servers Script

    Hi ... I have an updated file and i want to transfer that single file to multiple servers and will overwrite the oldfile... Need a vbscript to do this.. THanks
  14. Junbron

    Grab File Version from Multiple Machine

    Deymmm !!! Ur amazing!!! Thank you so much... I pretty much just added one line for me to report the Offline machine as well..and all good.. Thanks u So much!!!
  15. Junbron

    Grab File Version from Multiple Machine

    I have a list of machines.. And im new to this scriptiing.. Does anyone know how to create a VBscript to generate FileVersion of a certain file and output to Xcell Eg.. c$\Program Files\Java\jre6\bin\javaw.exe

Part and Inventory Search

Back
Top