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.

desktop shortcut

Featured Replies

hi everyone

how can i set desktop shortcut during Unattended Windows 7 install

thanks

C:\Users\YOURNAME\Desktop add the .lnk files here

I noticed the reg changed here

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage2

ProgramsCache key

@rafolb

If you want create a shortcut during Windows 7 unattended install, you can make a batch file or a vbs file.

More help here:

http://ss64.com/nt/shortcut.html

An exemple with a vbs file for notepad in French. Rename the file in vbs.

NotepadShorcut.vbs

-------------------------------------------------------------------------------------------

' CreateShortCut.vbs - Create a Desktop Shortcut.

' VBScript to create .lnk file

' ----------------------------------------------------------'

Option Explicit

Dim objShell, objDesktop, objLink

Dim strAppPath, strWorkDir, strIconPath

' --------------------------------------------------

' Here are the variables that to change if you are making a 'real' script

strWorkDir ="%HOMEDRIVE%%HOMEPATH%"

strAppPath = "%windir%\system32\notepad.exe"

strIconPath = "%windir%\system32\notepad.exe, 0"

Set objShell = CreateObject("WScript.Shell")

objDesktop = objShell.SpecialFolders("Desktop")

Set objLink = objShell.CreateShortcut(objDesktop & "\notepad.lnk")

' ---------------------------------------------------

' Section which adds the shortcut's key properties

objLink.Description = "Créez et modifiez des fichiers texte en utilisant des fonctions de formatage de base."

objLink.HotKey = "CTRL+ALT+X"

objLink.IconLocation = strIconPath

objLink.TargetPath = strAppPath

objLink.WindowStyle = 1

objLink.WorkingDirectory = strWorkDir

objLink.Save

WScript.Quit

' End of creating a desktop shortcut

--------------------------------------------------------------------------

I hope that will help you.

Edited by myselfidem

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.