Offline Online

Anything VBScript-related, including Windows Script Host, WMI, ADSI, and more.
Forum rules
Do not post any licensing information in this forum.

Any code longer than three lines should be added as code using the 'Select Code' dropdown menu or attached as a file.
This topic is 8 years and 8 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked
User avatar
devereux0110
Posts: 38
Last visit: Mon Oct 02, 2017 7:11 am

Offline Online

Post by devereux0110 »

Seeing a small issue where Windows 7 laptops when connected to the Domain don't always automatically come online. This happens 1 out 20 maybe.

When the drive doesn't come online itself a reboot is required and then the drive appears online.

Found a bit of script and although we have written a lot of VBS over the year, not quite understanding what the end results is but appears as though the script makes drives of files online again by force.

However the script references a url at the bottom which would be different for all users so everyone would need their own script for this to work, is there a modification anyone know to this script that basically says check offline cache and anything offline make online?

Any assistance Appreciated

Thanks

'WMI Object for the OnlineTransition
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate,authenticationLevel=Pkt}!\\" _
& strComputer & "\root\cimv2")
Set colItem = objWMIService.ExecQuery _
("SELECT * FROM Win32_OfflineFilesCache")

For Each objItem In colItem
objItem.TransitionOnline "\\myserv.lan\Roaming\testuser3", False
Next
User avatar
SAPIEN Support Forums
Posts: 945
Last visit: Thu Oct 22, 2015 1:10 pm

Offline Online

Post by SAPIEN Support Forums »

This is an automated post. A real person will respond soon.

Thank you for posting, devereux0110.

Here are some hints to help you get an accurate and complete answer to your question.

Ask in the best forum: If you asked in the wrong forum, just copy your question to the right forum.

Anticipate follow-up questions!

Did you remember to include the following?
  • 1. Product, version and build
    2. 32 or 64 bit product
    3. Operating system, e.g. Windows 7 64 bit.
    4. Attach a screenshot, if applicable
    5. Attach logs, crash reports, etc., in a ZIP file
If not, please take a moment to edit your original post or reply to this one.

*** Make sure you do not post any licensing information ***
This topic is 8 years and 8 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked