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. stev379

    Get IP's of Computers in a group in AD

    I have a group of computers in AD that I need to get the IP addresses from. Not concerned about script speed. It can run for a few hours if needed and can skip the machines that are offline if necessary. I've got something close, but I think some changes to the WMI connections are needed. I...
  2. stev379

    Office 2007 Post sp2 updates download

    Thanks for the info. I need all post SP2 updates in order to configure an install package and place the updates in the "Updates" folder. When I go to the link(http://catalog.update.microsoft.com/v7/site/Thanks.aspx?id=140), I get the message below. I've tried with IE8 and IE6 on multiple XP...
  3. stev379

    Office 2007 Post sp2 updates download

    Where can I download Office 2007 updates that were release after sp2? I've Googled and searched all day and am not finding anything on MS's sites to obtain these updates. I had no problem doing this about a year ago even after the 4.24.2009 SP2 release date. It's easy enough to put them in...
  4. stev379

    MS entourage reverting calendar entries??

    It was saved in Outlook. I'm watching on his Mac in Entourage as his assistant makes changes on her PC in Outlook and the Entourage calendar is updated within seconds. But within a few hours, the entries revert back. I tested quiting Entourage and reopening, but the events stayed the same...
  5. stev379

    MS entourage reverting calendar entries??

    The boss uses a new Mac with MS entourage 2004. His assistant uses a PC (as do the rest of the users), with Outlook 2003. The assistant has changed the time of some appointments in his Calendar, which she has access to via Outlook. The next day, those entries are reverted back to the original...
  6. stev379

    Enable File and Printer Sharing remotely

    I've searched and searched and found a lot of info on snetcfg.exe and possible scripts, but none of the download links I've found for snetcfg.exe seem to be valid. Found a link in the thread linked here, but it's the same link I found in many places...
  7. stev379

    Disable System Debugger

    I need to disable the System Debugger on all W2K machines. We're mostly XP, but still have a 100 or so W2K boxes out there. I'd like to do this with GPO if possible. I think it's possible with a registry setting which I could create an ADM file for to run it as a GPO. Problem is, I can't...
  8. stev379

    AD Password Expiration

    I got this script from John Savill at http://www.windowsitpro.com/Article/ArticleID/46819/46819.html I edited it for my domain ou structure and it Wscript.echo's the first echo with correct information for that user, but on line 56 [ Set objUserConnection = GetObject("LDAP://" &...
  9. stev379

    Adding & removing printers

    You may want to look at this. It does a good job of parsing the names, installing the new connections, then deleting the old. There's a posting further down the page by "murbot" that is a little cleaner and handles going to 2 new servers from 1 old server...
  10. stev379

    objFSO.CreateTextFile Permission denied

    The snippet below checks for a flag file, and works fine when I'm logged in as an admin on XP, but errors on the Set objFile = objFSO.CreateTextFile("C:\PTRMIG_FLG_.txt") line when logged in as a Power User or less. It returns a Permission Denied error. How can I create a file on the...
  11. stev379

    RemovePrinterConnection fails on Windows 2000

    Thanks all! To answer mrmovie, no that's not the sum of the script, the full script is 390 lines, so I just posted the trouble part. But I did test with a script that contained only the snippet I posted and got the same errors. tsuji, I found the same article tried modify the script or tried...
  12. stev379

    How would you determine the OS a device is running.

    This worked best for me. I trimmed the echoed result to only show the first 3 charactors. 4.0 = NT 5.0 = Win2000 5.1 = XP 5.2 = Server 2003 'begin script strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")...
  13. stev379

    RemovePrinterConnection fails on Windows 2000

    Just installed it, rebooted and tested again. Same result. "The network connection does not exist." I've tried enumerating and echoing to test and get a list of the printers. I then enumerating on a box with only 1 printer installed and used that enumeration as a variable to remove and got...
  14. stev379

    RemovePrinterConnection fails on Windows 2000

    We're migrating printers from 1 server to 2 new servers. All HP goes to one server now and non HP to another. The script works great on Windows XP. But on Windows 2000 it adds the new printers pointed to the new servers correctly, but fails to delete the old printers. I've tried tried using...
  15. stev379

    Adding some kind of progress notification to a script.

    This version of Marks outstanding script gives the appearence of stepping through as it calls some other scripts. Thanks to PHV for pointing me to Marks script which I found a week or two ago, but then could not find this thread again. Special thanks to Mark for coming up with such a cool way to...
  16. stev379

    Progress bar

    Hello! There is a post on Tek-tips somewhere about creating a phony progress bar with IE from vbs. It was posted by someone with the first name "Mark" and there were a number of replies. I'm unable to find this post now. Can anyone point me to a link related to this post? Thanks!
  17. stev379

    Environment Variables Via GPO

    How can the script be reversed? I'd like to create a few paths to run an app then have another script to remove the added paths. Thanks! -Steve
  18. stev379

    Stop processes array

    Golom, Thanks! I tried your suggestion and a couple variations of it, but all that results is a quick flash of a command prompt window and the test processes (Word and notepad) continue to run. Task mgr doesn't show any script running. Any further suggestions...? Also, how do you post your...
  19. stev379

    Stop processes array

    I need to stop a changing list of processes on local machines. I'd like to be able to just add to list within the script when I have a new process name. Currently, I just write the guts of the script over and over. I've gotten close with a sub routine that works for deleting files. I just...

Part and Inventory Search

Back
Top