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.

cmd

Member
  • Joined

  • Last visited

  • Country

    United Kingdom

Everything posted by cmd

  1. Sorry for the late reply. Thanks
  2. Set WshShell = WScript.CreateObject("WScript.Shell") dir = "abc" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Installation\InstallPath", "a" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\First Name", "b" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Last Name", "c" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Organization", "d" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Register", "e" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Serial Number", "f" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Validation", "g" Next WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Installation\InstallPath" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\First Name" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Last Name" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Organization" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Register" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Serial Number" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Validation"It gave me an unexpected 'Next' Set WshShell = WScript.CreateObject("WScript.Shell") dir = "abc" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Installation\InstallPath", "a" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\First Name", "b" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Last Name", "c" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Organization", "d" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Register", "e" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Serial Number", "f" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Validation", "g" WScript.Echo WshShell.RegRead("HKLM\SOFTWARE\Macromedia\" & dir & "\6\Installation\InstallPath") WScript.Echo WshShell.RegRead("HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\First Name") WScript.Echo WshShell.RegRead("HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Last Name") WScript.Echo WshShell.RegRead("HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Organization") WScript.Echo WshShell.RegRead("HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Register") WScript.Echo WshShell.RegRead("HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Serial Number") WScript.Echo WshShell.RegRead("HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Validation")That works, although I don't know why. Maybe it's becuase I put a function inside a function so it wanted parentheses? Thanks
  3. Set WshShell = WScript.CreateObject("WScript.Shell") dir = "abc" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Installation\InstallPath", "a" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\First Name", "b" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Last Name", "c" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Organization", "d" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Register", "e" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Serial Number", "f" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Validation", "g" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Installation\InstallPath" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\First Name" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Last Name" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Organization" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Register" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Serial Number" WScript.Echo WshShell.RegRead "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Validation" That code gives an error, Line 10, Char 31, 'Expected end of statement'. However, this works fine: Set WshShell = WScript.CreateObject("WScript.Shell") dir = "abc" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Installation\InstallPath", "a" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\First Name", "b" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Last Name", "c" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Organization", "d" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Register", "e" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Serial Number", "f" WshShell.RegWrite "HKLM\SOFTWARE\Macromedia\" & dir & "\6\Registration\Validation", "g" I can't see anything wrong with the first code. Can you? Note that I have changed what is being written to the registry (I don't exactly want to write a,b,c etc.)

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.