File To launch Website Link AutoMatically - .bat File or Batch file
Hi all,
If you are looking for .bat file which can open a link ,
then save the following code as "link.bat" file and run as admin.
"
@echo off
start "" C:\Users\Public\Desktop\googlechrome.lnk http://google.com
"
Code Breakup:
1 - C:\Users\Public\Desktop\googlechrome.lnk - this is the googlechrome shorcut link
.lnk is used with any shortcut
2 - http://google.com - this is the link to be opened.
If you are looking for .bat file which can open a link ,
then save the following code as "link.bat" file and run as admin.
"
@echo off
start "" C:\Users\Public\Desktop\googlechrome.lnk http://google.com
"
Code Breakup:
1 - C:\Users\Public\Desktop\googlechrome.lnk - this is the googlechrome shorcut link
.lnk is used with any shortcut
2 - http://google.com - this is the link to be opened.
Comments
Post a Comment