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 TouchToneTommy 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. DantanaSwat

    WMI event handler

    It dont wanna work :( The idea Upon a new xdb file being created in the c:\program files\Symantec Antivirus folder I want it to delete all folders in the c:\program file\symantec antivirus\I2_LDVP.VDB folder strComputer = "virus server" Dim objWMIService, strComputer, colMonitiredEvents...
  2. DantanaSwat

    XP Virtual memory...eesh

    So I got the Dave Roth book on Win32 Scripting for System admins (Im very new to perland scripting in general) and the script Ive written down suddenly take up all of the VM. Im using PerlIDE and I believe it happens when it makes the Apilink('kernal.32.dll' if(Apilink('kernal32.dll', 'DWORD...
  3. DantanaSwat

    Moving the 'My Documents' folder

    Im in an NT 4.0 domain with 2000 and xp workstations. As of now there are two servers with the users home directories and I am trying to move all of the home directories onto one server as well as change everyone's 'My Documents' folder to aim at said home directory. Some are set up and some are...
  4. DantanaSwat

    ADO question

    I get a syntax error in this FROM line Database called inventory.mdb and im trying to open the General table for updating Set Domain = GetObject("WinNT://mydomain") Domain.Filter = Array("computer") Const adOpenStatic = 3 Const adLockOptimistic = 3 Set objConnection =...
  5. DantanaSwat

    NT to 2003 migration question

    We currently have an NT domain. Out of 20 servers or so we have 6 left that are NT. Unforunatly our domain controller needs to be replaced. Being that I cant seem to set up a 2003 box to take over domain controller for the PDC I figured Id try a side by side migration. Set up an AD domain and...
  6. DantanaSwat

    best way to 2003?

    Whats the best way to upgrade an NT 4 domain to 2003 when the DC cant handle 2003? Is the best thing to create a 4.0 server that will, promote it to PDC then upgrade? Single NT domain 200 users and machines
  7. DantanaSwat

    http post?

    Is it possible to send requests to forms in websites? I wanted to script something that reads, from the WinNT space, the computer names (Dell service tags) then sends the tag to the dell website (which requires authentication) then pulls the source code from the warranty info and writes it to a...
  8. DantanaSwat

    Im not sure what to do

    Im new to Perl and scripting in general. Im in a Windows network with a bunch of dell machines. Our machine names are SVC followed by the dell service tag numbers. The new budget year is here and my manager was needing warranty info from all of the machines. I know how to pull the computernames...
  9. DantanaSwat

    Changing Special Folders

    I have users here whose 'My Documents' Folder are either pointing to thier mapped h drive to thier personal user folder on the server or pointing to thier local profile My Documents on thier desktop. How can I script it to change the c:\documents and setting\yada yada to h:\userfolder. I cand...
  10. DantanaSwat

    MsxBox text colors?

    Is it possible to change the text color in message boxes? If so...how :)
  11. DantanaSwat

    IADs objects in vbscript

    Is there a way to explicity bind to the different IADs objects via vbscript?
  12. DantanaSwat

    .net 2003 and vbscript debug

    Is there a way to debug thru ,net 2003...the debug is always greyed out. I know I could use the //x and stuff but I was hoping there was a way thru there. I thought I read soething about it but now I cant find it PITY ME!!
  13. DantanaSwat

    Loggin off users

    I have this little diddy sub logoff(noFile) If objFSO.FileExists(noFile) Then set objFile = objFSO.OpenTextFile(noFile,8) else objFSO.CreateTextFile(noFile) set objFile = objFSO.OpenTextFile(noFile, 8) end If objFile.WriteLine(strUser & "," & strComputer & "No")...
  14. DantanaSwat

    What am I doing wrong

    calling this logoff sub and its failing cos its not getting the strUser and strComputer from the rest of the script sub logoff(noFile) If objFSO.FileExists(noFile) Then set objFile = objFSO.OpenTextFile(noFile,8) else objFSO.CreateTextFile(noFile) set objFile =...
  15. DantanaSwat

    Exiting a script

    I was tasked to set up login popup screens to happen every 2 weeks or so and log a response. If it were just one message...then no problem...but they wanted 2 weeks, harasment, 2 weeks, e-mail, 2 weeks computer usage and then back to the start. I wrote a script that logged the yes and then when...

Part and Inventory Search

Back
Top