DreadStarX
Well-known member
Hey guys,
I've been working on this script for some time, and I'm having some issues with it.
Issues:
1. I need a script to work with Chrome, but I can't figure out HOW to set the "homepage" for Chrome. I found a webpage, but I didn't understand it at all, and I lost it now, haha.
2. I need to bypass the "import" screen of Firefox. I can't seem to figure that one out, or if it is possible at all.
Thanks in Advance,
Thomas
I've been working on this script for some time, and I'm having some issues with it.
Code:
REG ADD "HKCU\Software\Microsoft\Internet Explorer\Main" /V "Start Page" /D "http://www.moseslakeschools.org/" /F
@Echo off
taskkill /im firefox.exe* /f
cd /D "%APPDATA%\Mozilla\Firefox\Profiles"
cd *.default
set ffile=%cd%
echo user_pref("browser.startup.homepage", "https://www.moseslakeschools.org");>>"%ffile%\prefs.js"
set ffile=
cd %windir%
Issues:
1. I need a script to work with Chrome, but I can't figure out HOW to set the "homepage" for Chrome. I found a webpage, but I didn't understand it at all, and I lost it now, haha.
2. I need to bypass the "import" screen of Firefox. I can't seem to figure that one out, or if it is possible at all.
Thanks in Advance,
Thomas