chaddiablo Posted May 24, 2009 Posted May 24, 2009 Hi in a script i made, i made it so the game installs and everything. But it asks that i should turn off firewall (only one i have is windows firewall) while installing. Anyone know how to turn it off then turn it back on?
JohnMC Posted May 24, 2009 Posted May 24, 2009 (edited) Hi in a script i made, i made it so the game installs and everything. But it asks that i should turn off firewall (only one i have is windows firewall) while installing. Anyone know how to turn it off then turn it back on?nvm Edited May 24, 2009 by JohnMC https://johnscs.com
Developers Jos Posted May 24, 2009 Developers Posted May 24, 2009 Hi in a script i made, i made it so the game installs and everything. But it asks that i should turn off firewall (only one i have is windows firewall) while installing. Anyone know how to turn it off then turn it back on?Why would you need to turn of the firewall when installing a game?More Details ? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
chaddiablo Posted May 24, 2009 Author Posted May 24, 2009 (edited) The game requires access to the internet to check if the cd key is a valid. I tried it with the firewall on and it said it cant access the internet. Edited May 24, 2009 by chaddiablo
chaddiablo Posted May 24, 2009 Author Posted May 24, 2009 Then you need to make an exception for the executable, not disable the whole firewall.Oh thanks, ill try doing that.
chaddiablo Posted May 24, 2009 Author Posted May 24, 2009 (edited) Okay i tried to add the exception with this Run('cmd') WinWait("E:\WINDOWS\system32\cmd.exe", "") If Not WinActive("E:\WINDOWS\system32\cmd.exe", "") Then WinActivate("E:\WINDOWS\system32\cmd.exe", "") WinWaitActive("E:\WINDOWS\system32\cmd.exe", "") Send("netsh{SPACE}firewall{SPACE}set{SPACE}allowedprogram{SPACE}={SPACE}E:\Games\PIle2\PIle2.exe{SPACE}PIle2{SPACE}mode{SPACE}={SPACE}enabled{ENTER}") Send("Exit") But it didnt add the exception, is there something wrong here? And if possible is there a way to not use cmd? Edited May 24, 2009 by chaddiablo
chaddiablo Posted May 24, 2009 Author Posted May 24, 2009 (edited) Okay i found how to do it. I have to add it first before i "set" it. Send("netsh{SPACE}firewall{SPACE}add{SPACE}allowedprogram{SPACE}program{SPACE}={SPACE}E:\Games\PIle2\PIle2.exe{SPACE}PIle2{SPACE}enable{ENTER}") this adds it into the firewall exceptions Edited May 24, 2009 by chaddiablo
chaddiablo Posted May 24, 2009 Author Posted May 24, 2009 also found out how to turn off firewall and turn back on Send("netsh{SPACE}firewall{SPACE}set{SPACE}opmode{SPACE}Disable{ENTER} and for turn back on Send("netsh{SPACE}firewall{SPACE}set{SPACE}opmode{SPACE}Enable{ENTER}
trancexx Posted May 24, 2009 Posted May 24, 2009 chaddiablo why are you using Run() function when you can do this: Send("#r") Send("cmd.exe{Enter}") ;... etc ♡♡♡ . eMyvnE
chaddiablo Posted May 24, 2009 Author Posted May 24, 2009 chaddiablo why are you using Run() function when you can do this: Send("#r") Send("cmd.exe{Enter}") ;... etc old codding habbits i suppose
trancexx Posted May 24, 2009 Posted May 24, 2009 old codding habbits i supposeI had this dog. Very old. Don't want to go into the details now but he is gone. ♡♡♡ . eMyvnE
chaddiablo Posted May 24, 2009 Author Posted May 24, 2009 Well that does shorten like all my work i did lol
trancexx Posted May 24, 2009 Posted May 24, 2009 Why use Send() when you can do this?The everlasting question.Surprisingly. ♡♡♡ . eMyvnE
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now