Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

turn off system restore on all drives except C:

Featured Replies


Try using this VB script that another forum member here graciously helped me out with...

Dim SRP, eSRP
Set SRP = GetObject("winmgmts:\\.\root\default:SystemRestore")
eSRP = SRP.disable("D:\")

Replace "D:\" with whatever drive you wish to disable system restore on (you must also keep the quotes).

You can also re-enable it by changing SRP.disable to SRP.enable

You can't use this during the actual installation process, but you can use it during GUIRUNONCE/EX.

Just copy+paste it into notepad and save it with the .vbs extension (making sure not to save it as .vbs.txt)

:)

Or to search through all and turn off except C

Save this as

SysRestoreOff.vbs

Const DriveTypeRemovable = 1
Const DriveTypeFixed = 2
Const DriveTypeNetwork = 3
Const DriveTypeCDROM = 4
Const DriveTypeRAMDisk = 5

Set FSO = CreateObject("Scripting.FileSystemObject")
Set Drives = FSO.Drives
For each Drive in Drives
If Drive.DriveType = 2 then
 If Drive = "C:" then
 Else
 Target Drive
 End if
End if
Next

Sub Target(Drive)
 Dim SRP, eSRP
 Set SRP = GetObject("winmgmts:\\.\root\default:SystemRestore")
 eSRP = SRP.disable(Drive & "\")
 Set SRP = Nothing
 Set eSRP = Nothing
End Sub

Set FSO = Nothing
Set Drives = Nothing

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.