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.

KBakker

Member
  • Joined

  • Last visited

  • Country

    Netherlands
  1. @-= MD =- Of course is this possible. First of all create a new remote user and activate logon script. Place this *.vbs script in the following directory %WinDir%\System32\Repl\Import\Scripts. In the following code (I use this) you can see that I start/stop services, load programs, make mappings, change proxy settings, change host file settings and redirect data directory to a different drive. '**************************************************************************************** ' NAME : Logon.Vbs ' AUTHOR : Robert Collewijn ' DATE : 29-3-2001 ' ' COMMENT : This Script is for making network and printer connections. ' Place this script in the following directory. ' %WinDir%\System32\Repl\Import\Scripts ' '**************************************************************************************** Option Explicit ' On Error Resume Next '*** Define Script title **************************************************************** Dim sVersion, sTitleLng, sTitleSht, vFileName, vPositie, vName sVersion = " v1.5" ' Define Version sTitleLng = "R.Collewijn - Hardware Diagnostic" ' Define Long title sTitleSht = "Hardware Diagnostic" ' Define Short title vFileName = Wscript.ScriptName ' Script Name difineren vPositie = InStrRev(vName, ".") If vPositie > 0 Then vFileName = Left (vFileName, sPositie -1) '*** Define Object variable ************************************************************* Dim sUserDrive sUserDrive = "E:" ' Define default user drive '*** Define Object variable ************************************************************* Dim wnw, wsh, fso Set wnw = WScript.CreateObject("WScript.Network") Set wsh = WScript.CreateObject("WScript.Shell") Set fso = CreateObject("Scripting.FileSystemObject") '*** Remove Network Connections ********************************************************* Dim cDrive, sDrive, vDrv For cDrive = 26 To 5 Step -1 sDrive = Chr(cDrive + 64) & ":" If fso.DriveExists(sDrive) Then Set vDrv = fso.GetDrive(sDrive) If vDrv.drivetype = 3 Then ' If it is a network drive wnw.RemoveNetworkDrive sDrive ' Remove mapping End If End If Set vDrv = Nothing Next '*** Create network connection ********************************************************** Dim sUser, sCUser, sUserDir sUser = wnw.UserName ' Curent usernaam sCUser = UCase(sUser) ' Curent username in uppercase sUserDir = sUserDrive & "\Documents and Settings\" & sUserDir & "\" '--- Restore shell folders -------------------------------------------------- Dim sSFRoot, sUSFRoot, aFRoot, oItem sSFRoot = "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\" sUSFRoot = "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\" aFRoot = Array(sSFRoot, sUSFRoot) For Each oItem In aFRoot wsh.RegWrite oItem & "Cookies", sUserDir & "Cookies" wsh.RegWrite oItem & "Desktop", sUserDir & "Desktop" wsh.RegWrite oItem & "Favorites", sUserDir & "Favorites" wsh.RegWrite oItem & "History", sUserDir & "Local Settings\History" wsh.RegWrite oItem & "Local AppData", sUserDir & "Local Settings\Application Data" wsh.RegWrite oItem & "Local Settings", sUserDir & "Local Settings" wsh.RegWrite oItem & "My Music", sUserDir & "My Documents\My Music" wsh.RegWrite oItem & "My Pictures", sUserDir & "My Documents\My Pictures" wsh.RegWrite oItem & "My Video", sUserDir & "My Documents\My Video" wsh.RegWrite oItem & "Personal", sUserDir & "My Documents" wsh.RegWrite oItem & "Templates", sUserDir & "Templates" Next '--- Restore settings for remote network ------------------------------------ If (sCUser = "XXXXXX" Or sCUser = "XXXXXXX") Then wnw.MapNetworkDrive "F:", "\\DESKTOP\SHARE_1$", , sUser wnw.MapNetworkDrive "G:", "\\DESKTOP\SHARE_2$", , sUser wnw.MapNetworkDrive "H:", "\\DESKTOP\SHARE_3$", , sUser 'enz... End IF '--- disable proxy settings ------------------------------------------------- wsh.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable", 0 ,"REG_DWORD" wsh.RegWrite "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page", "about:blank" '--- Change hosts file ------------------------------------------------------ Dim sCurrentDate, sHostsFile sCurrentDate = Date sCurrentDate = FormatDateTime(sCurrentDate,1) Set sHostsFile = fso.CreateTextFile("c:\windows\system32\drivers\etc\hosts", True) sHostsFile.WriteLine "# This HOSTS file is automatic generated on " & sCurrentDate sHostsFile.WriteLine "# by Network Connection scripting tool written by Robert Collewijn." sHostsFile.WriteBlankLines 2 sHostsFile.WriteLine "127.0.0.1 localhost" sHostsFile.WriteBlankLines 1 sHostsFile.WriteLine "xxx.xxx.xxx.xxx Example # Desktop Example" sHostsFile.Close Set sHostsFile = Nothing '--- Start/stop program's --------------------------------------------------- wsh.Run "C:\Windows\Logi_mwx.exe", 2, False wsh.Run "C:\Progra~1\DiskCl~1\dclean.exe -q", 2, False wsh.Run "C:\Progra~1\Networ~1\VirusS~1\shstat.exe", 2, False wsh.Run "C:\Progra~1\Networ~1\Common~1\Update~1.exe /StartedFromRunKey", 2, False wsh.Run "Net stop services", 2, False '*** End ********************************************************************************

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.