Skip to content

Instantly share code, notes, and snippets.

@Techlogist
Last active October 3, 2021 12:36
Show Gist options
  • Save Techlogist/94beb9a0069b4db015b61b2833ee41f5 to your computer and use it in GitHub Desktop.
Save Techlogist/94beb9a0069b4db015b61b2833ee41f5 to your computer and use it in GitHub Desktop.
Quick daily startup for users
REM License: GNU General Public License v2.0
REM Author: Miguel
REM Website: www.techlogist.net
REM Post: https://techlogist.net/batch/quick-daily-startup-for-users
REM Description: This script is an example of a startup batch that can be ran at startup
REM OS/Language/Region: Windows/EN-US
@echo off
title STARTUP
start firefox.exe "google.com" "yahoo.com"
cd "C:\Users\SC3\AppData\Local\Temp"|del * /q
start explorer "C:\Users\SC3"
mstsc /v:file-server1
runas /user:administrator-name /noprofile dsa.msc
exit
REM License: GNU General Public License v2.0
REM Author: Miguel
REM Website: www.techlogist.net
REM Post: https://techlogist.net/batch/quick-daily-startup-for-users
REM Description: This script open the STARTUP folder
REM OS/Language/Region: Windows/EN-US
@echo off
title Windows Startup
start explorer "C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup"
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment