Results 1 to 3 of 3

Thread: Remotely force Windows Auto Update check

  1. #1
    Join Date
    Sep 2004
    Posts
    76

    Remotely force Windows Auto Update check

    I’m the admin of a server domain running with Windows Server 2K3. There are few clients configured with the same. I have scheduled windows updates on all my client PCs but I wanted to know if there is any we can force any of my clients to check for updates before or after its scheduled time? I want to it as silently as possible remotely. I did some research and I think it it can be done with the following command but not sure:

    psexec %1 -user mydomain\administrator -p %2 wuauclt.exe /detectnow

    Can this work? If not, is there any way? Thanks in advance.

  2. #2
    Join Date
    Sep 2005
    Posts
    140

    Re: Remotely force Windows Auto Update check

    Yes ofcourse that command will work. What makes you think that it cannot be done? Just note that the password goes over the network in cleartext. So you can do bit modification in that command and run like this:

    psexec \\machinename -s wuauclt /detectnow

    Also will suggest you to run this command in an elevated DOS prompt if anything then to avoid the password issue. But it is very bad if you are doing this on a client’s PC silently, without making him know about the same.

  3. #3
    Join Date
    Sep 2005
    Posts
    227

    Re: Remotely force Windows Auto Update check

    I have done this in past with a small script I found on a website. It works for me, you can give it a try if you want:

    ' ---------------START CODE---------------
    strComputer = inputbox("Enter a computer name to run WUA
    detectnow","Invoke detectnow")
    if strComputer = "" then wscript.quit
    on error goto 0
    Set autoUpdateClient =
    CreateObject("Microsoft.Update.AutoUpdate",strComputer)
    AutoUpdateClient.detectnow()
    wscript.echo "All done."
    ' ----------------END CODE-----------------

Similar Threads

  1. Do firmware update for Force Series 3 and Force GT is available?
    By Nitesha in forum Hardware Peripherals
    Replies: 6
    Last Post: 25-09-2011, 08:33 AM
  2. Replies: 1
    Last Post: 29-08-2011, 12:19 PM
  3. Force Windows to check updates
    By AltaEgo in forum Windows Update
    Replies: 3
    Last Post: 25-05-2009, 10:58 PM
  4. Replies: 11
    Last Post: 16-09-2007, 10:00 PM
  5. Command to force reinstallation of windows update
    By Luis S in forum Server Update Service
    Replies: 1
    Last Post: 10-05-2007, 09:32 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,547,174.17834 seconds with 17 queries