Last active
October 3, 2021 12:36
-
-
Save Techlogist/94beb9a0069b4db015b61b2833ee41f5 to your computer and use it in GitHub Desktop.
Quick daily startup for users
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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