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.

Batch File to Copy files to %USERPROFILE%

Featured Replies

Hey,

How can i copy files from the windows cd to the %USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch ?

I want to have some icons there after installation.

The icons are in the $OEM$ map, same place as cmdlines.txt

Thanks in advance! :thumbup

Raoul

If you Login with a account for the first time then this folder gets overrated if windows load the settings.

You can use a Batch that runs after windows login.

Edited by Outbreaker

I use this at T-12 to edit quicklaunch:

if not exist "%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch\cmd.lnk" shortcut.exe /F:"%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch\cmd.lnk" /A:C /T:"%SystemRoot%\system32\cmd.exe"

shortcut.exe

If you dont want to use 3rd party apps for something as simple as

adding something to Quick Launch folder, here is a VBS script that

adds Cmd Promt to the Quick Launch folder.

Save As AddCmd_QLaunch.vbs

Option Explicit
Dim Act, ObjSC, QuickLaunch, StrCmd
Set Act = CreateObject("WScript.Shell")
QuickLaunch = Act.ExpandEnvironmentStrings("%AppData%\Microsoft\Internet Explorer\Quick Launch")
StrCmd = Act.ExpandEnvironmentStrings("%SystemRoot%\system32\cmd.exe")
Set ObjSC = Act.CreateShortcut(QuickLaunch & "\Cmd.lnk")
ObjSC.Description = Act.ExpandEnvironmentStrings("%UserName%") & " Open Command Promt"
ObjSC.TargetPath = StrCmd
ObjSC.Save

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.