Technology Questions

Go Back   Technology Questions > Software Questions > Operating System Questions > Vista Community > Windows Vista

Windows Vista Discuss the different versions of Windows Vista, Fuji, or Vienna

Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 02-04-2008, 02:50 PM
Gazza
Newsgroup Contributor
 
Posts: n/a
Vista sleep and Default Gateway issue - KB933872

Hello I have had this issue for some time and still cannot get a
resolution that works to my satisfaction.

I have Windows Vista Ultimate 64 bit. After the system has gone to
sleep and I have restarted it the Default gateway information is lost
and I cannot connect to the internet. I have tried hotfix KB933872 and
KB928233 and neither resolve the issue. It appears to be random as
sometimes the Default Gateway information is there and all is fine and
another time it is missing and the internet will not work.

I can keep sleeping and waking until it works or do a restart and all
will be fine. I also read from another person that is suffering from
the same problem that typing ipconfig /renew from a command prompt
will get things up and running again. This is true but none of these
options are ideal especially for my wife and son who want it to just
work - which I agree.....

Are there any other answers and resolutions to this issue or do I just
have to leave the thing running?

Many thanks and hopes in advance

Gary
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 02-04-2008, 02:50 PM
  #2 (permalink)  
Old 02-04-2008, 03:40 PM
Donald Robb
Newsgroup Contributor
 
Posts: n/a
Re: Vista sleep and Default Gateway issue - KB933872

Hello,

I have a possible solution but I won't be able to test it out until later on
tonight.

Set the script to run when the computer resumes from sleep. The easiest way
to do this is: a: Open the Windows Event Viewer application. b: Find a
'Power-Troubleshooter' event with ID 1 ('The system has resumed from sleep')
c: Right-click on the event and choose 'Add task to this event' and follow
the prompts to create the task. d: Change the task properties (you may need
to do this through Scheduled Tasks) - the script needs to run with highest
privileges and even when user is not logged on.

For the script you can use something like this and save it as a .vbs file

Set objShell = Wscript.CreateObject("Wscript.Shell")
objShell.run("%comspec% /k ipconfig /release")
objShell.run("%comspec% /k ipconfig /renew")

Cheers,
Donald Robb
CCIE R&S Written, CCIP, CCDP, CCNP, JNCIS-M, JNCIS-ER, ENA, MCSE 2003,
Security+, Network+, A+



"Gazza" <gary_windsor********.com> wrote in message
news:2ffa6e79-ee57-497a-b1b9-1599b8628a4d@f10g2000hsf.googlegroups.com...[color=blue]
> Hello I have had this issue for some time and still cannot get a
> resolution that works to my satisfaction.
>
> I have Windows Vista Ultimate 64 bit. After the system has gone to
> sleep and I have restarted it the Default gateway information is lost
> and I cannot connect to the internet. I have tried hotfix KB933872 and
> KB928233 and neither resolve the issue. It appears to be random as
> sometimes the Default Gateway information is there and all is fine and
> another time it is missing and the internet will not work.
>
> I can keep sleeping and waking until it works or do a restart and all
> will be fine. I also read from another person that is suffering from
> the same problem that typing ipconfig /renew from a command prompt
> will get things up and running again. This is true but none of these
> options are ideal especially for my wife and son who want it to just
> work - which I agree.....
>
> Are there any other answers and resolutions to this issue or do I just
> have to leave the thing running?
>
> Many thanks and hopes in advance
>
> Gary[/color]


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3 (permalink)  
Old 02-05-2008, 06:10 PM
Donald Robb
Newsgroup Contributor
 
Posts: n/a
Re: Vista sleep and Default Gateway issue - KB933872

I had a chance to test this out and it seems to work just fine.


Cheers,
Donald Robb

"Donald Robb" <donmanrobb********.com> wrote in message
news:u1KPNd4ZIHA.5088@TK2MSFTNGP06.phx.gbl...[color=blue]
> Hello,
>
> I have a possible solution but I won't be able to test it out until later
> on tonight.
>
> Set the script to run when the computer resumes from sleep. The easiest
> way to do this is: a: Open the Windows Event Viewer application. b: Find a
> 'Power-Troubleshooter' event with ID 1 ('The system has resumed from
> sleep') c: Right-click on the event and choose 'Add task to this event'
> and follow the prompts to create the task. d: Change the task properties
> (you may need to do this through Scheduled Tasks) - the script needs to
> run with highest privileges and even when user is not logged on.
>
> For the script you can use something like this and save it as a .vbs file
>
> Set objShell = Wscript.CreateObject("Wscript.Shell")
> objShell.run("%comspec% /k ipconfig /release")
> objShell.run("%comspec% /k ipconfig /renew")
>
> Cheers,
> Donald Robb
> CCIE R&S Written, CCIP, CCDP, CCNP, JNCIS-M, JNCIS-ER, ENA, MCSE 2003,
> Security+, Network+, A+
>
>
>
> "Gazza" <gary_windsor********.com> wrote in message
> news:2ffa6e79-ee57-497a-b1b9-1599b8628a4d@f10g2000hsf.googlegroups.com...[color=green]
>> Hello I have had this issue for some time and still cannot get a
>> resolution that works to my satisfaction.
>>
>> I have Windows Vista Ultimate 64 bit. After the system has gone to
>> sleep and I have restarted it the Default gateway information is lost
>> and I cannot connect to the internet. I have tried hotfix KB933872 and
>> KB928233 and neither resolve the issue. It appears to be random as
>> sometimes the Default Gateway information is there and all is fine and
>> another time it is missing and the internet will not work.
>>
>> I can keep sleeping and waking until it works or do a restart and all
>> will be fine. I also read from another person that is suffering from
>> the same problem that typing ipconfig /renew from a command prompt
>> will get things up and running again. This is true but none of these
>> options are ideal especially for my wife and son who want it to just
>> work - which I agree.....
>>
>> Are there any other answers and resolutions to this issue or do I just
>> have to leave the thing running?
>>
>> Many thanks and hopes in advance
>>
>> Gary[/color]
>
>[/color]


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4 (permalink)  
Old 02-06-2008, 06:40 AM
Gazza
Newsgroup Contributor
 
Posts: n/a
Re: Vista sleep and Default Gateway issue - KB933872

On 6 Feb, 02:03, "Donald Robb" <donmanr...********.com> wrote:[color=blue]
> I had a chance to test this out and it seems to work just fine.
>
> Cheers,
> Donald Robb
>
> "Donald Robb" <donmanr...********.com> wrote in message
>
> news:u1KPNd4ZIHA.5088@TK2MSFTNGP06.phx.gbl...
>[color=green]
> > Hello,[/color]
>[color=green]
> > I have a possible solution but I won't be able to test it out until later
> > on tonight.[/color]
>[color=green]
> > Set the script to run when the computer resumes from sleep. The easiest
> > way to do this is: a: Open the Windows Event Viewer application. b: Find a
> > 'Power-Troubleshooter' event with ID 1 ('The system has resumed from
> > sleep') c: Right-click on the event and choose 'Add task to this event'
> > and follow the prompts to create the task. d: Change the task properties
> > (you may need to do this through Scheduled Tasks) - the script needs to
> > run with highest privileges and even when user is not logged on.[/color]
>[color=green]
> > For the script you can use something like this and save it as a .vbs file[/color]
>[color=green]
> > Set objShell = Wscript.CreateObject("Wscript.Shell")
> > objShell.run("%comspec% /k ipconfig /release")
> > objShell.run("%comspec% /k ipconfig /renew")[/color]
>[color=green]
> > Cheers,
> > Donald Robb
> > CCIE R&S Written, CCIP, CCDP, CCNP, JNCIS-M, JNCIS-ER, ENA, MCSE 2003,
> > Security+, Network+, A+[/color]
>[color=green]
> > "Gazza" <gary_wind...********.com> wrote in message
> >news:2ffa6e79-ee57-497a-b1b9-1599b8628a4d@f10g2000hsf.googlegroups.com...[color=darkred]
> >> Hello I have had this issue for some time and still cannot get a
> >> resolution that works to my satisfaction.[/color][/color]
>[color=green][color=darkred]
> >> I have Windows Vista Ultimate 64 bit. After the system has gone to
> >> sleep and I have restarted it the Default gateway information is lost
> >> and I cannot connect to the internet. I have tried hotfix KB933872 and
> >> KB928233 and neither resolve the issue. It appears to be random as
> >> sometimes the Default Gateway information is there and all is fine and
> >> another time it is missing and the internet will not work.[/color][/color]
>[color=green][color=darkred]
> >> I can keep sleeping and waking until it works or do a restart and all
> >> will be fine. I also read from another person that is suffering from
> >> the same problem that typing ipconfig /renew from a command prompt
> >> will get things up and running again. This is true but none of these
> >> options are ideal especially for my wife and son who want it to just
> >> work - which I agree.....[/color][/color]
>[color=green][color=darkred]
> >> Are there any other answers and resolutions to this issue or do I just
> >> have to leave the thing running?[/color][/color]
>[color=green][color=darkred]
> >> Many thanks and hopes in advance[/color][/color]
>[color=green][color=darkred]
> >> Gary[/color][/color][/color]

Hi thanks for that. I have been out for a couple of days so I will
have a go tonight.

Gary
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #5 (permalink)  
Old 02-06-2008, 06:40 AM
Gazza
Newsgroup Contributor
 
Posts: n/a
Re: Vista sleep and Default Gateway issue - KB933872

On 6 Feb, 02:03, "Donald Robb" <donmanr...********.com> wrote:[color=blue]
> I had a chance to test this out and it seems to work just fine.
>
> Cheers,
> Donald Robb
>
> "Donald Robb" <donmanr...********.com> wrote in message
>
> news:u1KPNd4ZIHA.5088@TK2MSFTNGP06.phx.gbl...
>[color=green]
> > Hello,[/color]
>[color=green]
> > I have a possible solution but I won't be able to test it out until later
> > on tonight.[/color]
>[color=green]
> > Set the script to run when the computer resumes from sleep. The easiest
> > way to do this is: a: Open the Windows Event Viewer application. b: Find a
> > 'Power-Troubleshooter' event with ID 1 ('The system has resumed from
> > sleep') c: Right-click on the event and choose 'Add task to this event'
> > and follow the prompts to create the task. d: Change the task properties
> > (you may need to do this through Scheduled Tasks) - the script needs to
> > run with highest privileges and even when user is not logged on.[/color]
>[color=green]
> > For the script you can use something like this and save it as a .vbs file[/color]
>[color=green]
> > Set objShell = Wscript.CreateObject("Wscript.Shell")
> > objShell.run("%comspec% /k ipconfig /release")
> > objShell.run("%comspec% /k ipconfig /renew")[/color]
>[color=green]
> > Cheers,
> > Donald Robb
> > CCIE R&S Written, CCIP, CCDP, CCNP, JNCIS-M, JNCIS-ER, ENA, MCSE 2003,
> > Security+, Network+, A+[/color]
>[color=green]
> > "Gazza" <gary_wind...********.com> wrote in message
> >news:2ffa6e79-ee57-497a-b1b9-1599b8628a4d@f10g2000hsf.googlegroups.com...[color=darkred]
> >> Hello I have had this issue for some time and still cannot get a
> >> resolution that works to my satisfaction.[/color][/color]
>[color=green][color=darkred]
> >> I have Windows Vista Ultimate 64 bit. After the system has gone to
> >> sleep and I have restarted it the Default gateway information is lost
> >> and I cannot connect to the internet. I have tried hotfix KB933872 and
> >> KB928233 and neither resolve the issue. It appears to be random as
> >> sometimes the Default Gateway information is there and all is fine and
> >> another time it is missing and the internet will not work.[/color][/color]
>[color=green][color=darkred]
> >> I can keep sleeping and waking until it works or do a restart and all
> >> will be fine. I also read from another person that is suffering from
> >> the same problem that typing ipconfig /renew from a command prompt
> >> will get things up and running again. This is true but none of these
> >> options are ideal especially for my wife and son who want it to just
> >> work - which I agree.....[/color][/color]
>[color=green][color=darkred]
> >> Are there any other answers and resolutions to this issue or do I just
> >> have to leave the thing running?[/color][/color]
>[color=green][color=darkred]
> >> Many thanks and hopes in advance[/color][/color]
>[color=green][color=darkred]
> >> Gary[/color][/color][/color]

Hi Rob,

are the instructions exactly as you describe above? This is an area
that I am not at all familiar with. Do I just use notepad to create
the script and where do I save it etc...

Thanks again.

Gary
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #6 (permalink)  
Old 02-06-2008, 06:50 AM
Gazza
Newsgroup Contributor
 
Posts: n/a
Re: Vista sleep and Default Gateway issue - KB933872

On 6 Feb, 14:37, Gazza <gary_wind...********.com> wrote:[color=blue]
> On 6 Feb, 02:03, "Donald Robb" <donmanr...********.com> wrote:
>
>
>[color=green]
> > I had a chance to test this out and it seems to work just fine.[/color]
>[color=green]
> > Cheers,
> > Donald Robb[/color]
>[color=green]
> > "Donald Robb" <donmanr...********.com> wrote in message[/color]
>[color=green]
> >news:u1KPNd4ZIHA.5088@TK2MSFTNGP06.phx.gbl...[/color]
>[color=green][color=darkred]
> > > Hello,[/color][/color]
>[color=green][color=darkred]
> > > I have a possible solution but I won't be able to test it out until later
> > > on tonight.[/color][/color]
>[color=green][color=darkred]
> > > Set the script to run when the computer resumes from sleep. The easiest
> > > way to do this is: a: Open the Windows Event Viewer application. b: Find a
> > > 'Power-Troubleshooter' event with ID 1 ('The system has resumed from
> > > sleep') c: Right-click on the event and choose 'Add task to this event'
> > > and follow the prompts to create the task. d: Change the task properties
> > > (you may need to do this through Scheduled Tasks) - the script needs to
> > > run with highest privileges and even when user is not logged on.[/color][/color]
>[color=green][color=darkred]
> > > For the script you can use something like this and save it as a .vbs file[/color][/color]
>[color=green][color=darkred]
> > > Set objShell = Wscript.CreateObject("Wscript.Shell")
> > > objShell.run("%comspec% /k ipconfig /release")
> > > objShell.run("%comspec% /k ipconfig /renew")[/color][/color]
>[color=green][color=darkred]
> > > Cheers,
> > > Donald Robb
> > > CCIE R&S Written, CCIP, CCDP, CCNP, JNCIS-M, JNCIS-ER, ENA, MCSE 2003,
> > > Security+, Network+, A+[/color][/color]
>[color=green][color=darkred]
> > > "Gazza" <gary_wind...********.com> wrote in message
> > >news:2ffa6e79-ee57-497a-b1b9-1599b8628a4d@f10g2000hsf.googlegroups.com...
> > >> Hello I have had this issue for some time and still cannot get a
> > >> resolution that works to my satisfaction.[/color][/color]
>[color=green][color=darkred]
> > >> I have Windows Vista Ultimate 64 bit. After the system has gone to
> > >> sleep and I have restarted it the Default gateway information is lost
> > >> and I cannot connect to the internet. I have tried hotfix KB933872 and
> > >> KB928233 and neither resolve the issue. It appears to be random as
> > >> sometimes the Default Gateway information is there and all is fine and
> > >> another time it is missing and the internet will not work.[/color][/color]
>[color=green][color=darkred]
> > >> I can keep sleeping and waking until it works or do a restart and all
> > >> will be fine. I also read from another person that is suffering from
> > >> the same problem that typing ipconfig /renew from a command prompt
> > >> will get things up and running again. This is true but none of these
> > >> options are ideal especially for my wife and son who want it to just
> > >> work - which I agree.....[/color][/color]
>[color=green][color=darkred]
> > >> Are there any other answers and resolutions to this issue or do I just
> > >> have to leave the thing running?[/color][/color]
>[color=green][color=darkred]
> > >> Many thanks and hopes in advance[/color][/color]
>[color=green][color=darkred]
> > >> Gary[/color][/color]
>
> Hi Rob,
>
> are the instructions exactly as you describe above? This is an area
> that I am not at all familiar with. Do I just use notepad to create
> the script and where do I save it etc...
>
> Thanks again.
>
> Gary[/color]

oops, in my hast I just realised that I referred to you as Rob. Sorry
Donald.

Gary
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #7 (permalink)  
Old 02-16-2008, 02:11 AM
Gazza
Newsgroup Contributor
 
Posts: n/a
Re: Vista sleep and Default Gateway issue - KB933872

On 6 Feb, 14:39, Gazza <gary_wind...********.com> wrote:[color=blue]
> On 6 Feb, 14:37,Gazza<gary_wind...********.com> wrote:
>
>
>
>
>[color=green]
> > On 6 Feb, 02:03, "Donald Robb" <donmanr...********.com> wrote:[/color]
>[color=green][color=darkred]
> > > I had a chance to test this out and it seems to work just fine.[/color][/color]
>[color=green][color=darkred]
> > > Cheers,
> > > Donald Robb[/color][/color]
>[color=green][color=darkred]
> > > "Donald Robb" <donmanr...********.com> wrote in message[/color][/color]
>[color=green][color=darkred]
> > >news:u1KPNd4ZIHA.5088@TK2MSFTNGP06.phx.gbl...[/color][/color]
>[color=green][color=darkred]
> > > > Hello,[/color][/color]
>[color=green][color=darkred]
> > > > I have a possible solution but I won't be able to test it out until later
> > > > on tonight.[/color][/color]
>[color=green][color=darkred]
> > > > Set the script to run when the computer resumes fromsleep. The easiest
> > > > way to do this is: a: Open the Windows Event Viewer application. b: Find a
> > > > 'Power-Troubleshooter' event with ID 1 ('The system has resumed from
> > > >sleep') c: Right-click on the event and choose 'Add task to this event'
> > > > and follow the prompts to create the task. d: Change the task properties
> > > > (you may need to do this through Scheduled Tasks) - the script needs to
> > > > run with highest privileges and even when user is not logged on.[/color][/color]
>[color=green][color=darkred]
> > > > For the script you can use something like this and save it as a .vbs file[/color][/color]
>[color=green][color=darkred]
> > > > Set objShell = Wscript.CreateObject("Wscript.Shell")
> > > > objShell.run("%comspec% /k ipconfig /release")
> > > > objShell.run("%comspec% /k ipconfig /renew")[/color][/color]
>[color=green][color=darkred]
> > > > Cheers,
> > > > Donald Robb
> > > > CCIE R&S Written, CCIP, CCDP, CCNP, JNCIS-M, JNCIS-ER, ENA, MCSE 2003,
> > > > Security+, Network+, A+[/color][/color]
>[color=green][color=darkred]
> > > > "Gazza" <gary_wind...********.com> wrote in message
> > > >news:2ffa6e79-ee57-497a-b1b9-1599b8628a4d@f10g2000hsf.googlegroups.com...
> > > >> Hello I have had this issue for some time and still cannot get a
> > > >> resolution that works to my satisfaction.[/color][/color]
>[color=green][color=darkred]
> > > >> I have WindowsVistaUltimate 64 bit. After the system has gone to
> > > >>sleepand I have restarted it the Default gateway information is lost
> > > >> and I cannot connect to the internet. I have tried hotfix KB933872 and
> > > >> KB928233 and neither resolve the issue. It appears to be random as
> > > >> sometimes the Default Gateway information is there and all is fine and
> > > >> another time it is missing and the internet will not work.[/color][/color]
>[color=green][color=darkred]
> > > >> I can keep sleeping and waking until it works or do a restart and all
> > > >> will be fine. I also read from another person that is suffering from
> > > >> the same problem that typing ipconfig /renew from a command prompt
> > > >> will get things up and running again. This is true but none of these
> > > >> options are ideal especially for my wife and son who want it to just
> > > >> work - which I agree.....[/color][/color]
>[color=green][color=darkred]
> > > >> Are there any other answers and resolutions to this issue or do I just
> > > >> have to leave the thing running?[/color][/color]
>[color=green][color=darkred]
> > > >> Many thanks and hopes in advance[/color][/color]
>[color=green][color=darkred]
> > > >> Gary[/color][/color]
>[color=green]
> > Hi Rob,[/color]
>[color=green]
> > are the instructions exactly as you describe above? This is an area
> > that I am not at all familiar with. Do I just use notepad to create
> > the script and where do I save it etc...[/color]
>[color=green]
> > Thanks again.[/color]
>[color=green]
> > Gary[/color]
>
> oops, in my hast I just realised that I referred to you as Rob. Sorry
> Donald.
>
> Gary- Hide quoted text -
>
> - Show quoted text -[/color]

Well I tried all these things and now I appear to be up and running -
great. It was my wireless mouse that was waking the pc from sleep (and
editing the allow device to wake system to no cleared the issue) and
now I have the script I have internet when the pc comes out of sleep.
Great, many thanks. Gary
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is Off
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Diagnosis Vista sleep issue JRDtechdotnet Windows Vista 2 02-01-2008 03:20 PM
Sleep problem with Gateway laptop blegs38552 Vista Hardware 2 07-05-2007 06:17 AM
The default gateway setting is lost when you wake a Windows Vista-based computer from sleep Julian Windows Vista 2 04-19-2007 02:45 PM
Vista - Sleep/network/task scheduler issue David Qunt Windows Vista 3 02-10-2007 08:31 AM
Re: Default gateway rosgiof@hotmail.it Windows XP 0 01-04-2007 05:10 AM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 07:47 AM.


2003 - 2009 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0