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.

kevin_s

Member
  • Joined

  • Last visited

  • Country

    United States

Everything posted by kevin_s

  1. Robd, If my memory serves me correctly, you have to also add the "NETWORK" group to the share permissions. The group Everyone still assumes that you are Someone, and therefore have some sort of authentication mechanism in place. Try adding NETWORK to the share permissions and let me know how it goes. Also, be sure to check the file system (if it's NTFS) permissions to ensure the selected group(s) can List/Read, etc. Good luck! Kevin
  2. I have written a VBScript to perform a silent installation of the Sun Java Runtime. Given that I've borrowed SO much from these forums, I figured I should register and give something back. This script installs Java to C:\Program Files\Java. It disables the Java auto-update, disables the creation of the "Java Web Start" shortcut and integrates with Internet Explorer and Firefox. Assumption : You have this version of the JRE and the Microsoft VM uninstaller. You can google unmsjvm.exe and get a copy. Option Explicit Dim oShell, oExec, sCmd, iButton, sProgs Set oShell = WScript.CreateObject("WScript.Shell") sProgs = oShell.ExpandEnvironmentStrings("%ProgramFiles%") iButton = oShell.Popup("Removing Microsoft Java VM",3,"Java Update Tool",0 + 64) sCmd = "unmsjvm.exe /q" Set oExec = oShell.Exec(sCmd) Do While oExec.Status = 0 WScript.Sleep 100 Loop iButton = oShell.Popup("Microsoft Java VM Removed. Now Installing Sun Java VM",3,"Java Update Tool",0 + 64) sCmd = "jre-1_5_0_10-windows-i586-p-s.exe /s ADDLOCAL=jrecore IEXPLORER=1 MOZILLA=1 INSTALLDIR=C:\Progra~1\Java REBOOT=Suppress JAVAUPDATE=0 WEBSTARTICON=0" Set oExec = oShell.Exec(sCmd) Do While oExec.Status = 0 WScript.Sleep 100 Loop iButton = oShell.Popup("Sun Java Runtime Installation Complete.",5,"Java Update Tool",0 + 64) Enjoy! Kevin

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.