LiteFirewall Plugin: Difference between revisions
Alazyrabbit (talk | contribs) (→Usage) |
Alazyrabbit (talk | contribs) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==Link== | ==Link== | ||
[http://liangsun. | [http://blog.liangsun.org/portfolio/nsis-plugin-litefirewall/ liteFirewall Plugin Homepage] | ||
==Background== | ==Background== | ||
There have been 3 firewall plugin for NSIS: Firewall-Disabler Plugin, NSIS Simple Firewall Plugin and NsisFirewall Plugin. But all of them has some shortcomings, so I just write one: liteFirewall. It's based on nsisFirewall. Thanks to it's author. | There have been 3 firewall plugin for NSIS: Firewall-Disabler Plugin, NSIS Simple Firewall Plugin and NsisFirewall Plugin. But all of them has some shortcomings, so I just write one: liteFirewall. It's based on nsisFirewall. Thanks to it's author. | ||
Line 21: | Line 22: | ||
liteFirewall::RemoveRule "<application path>" "<rule name>" | liteFirewall::RemoveRule "<application path>" "<rule name>" | ||
</highlight-nsis> | </highlight-nsis> | ||
<application path>is the full path to the application you want to be authorized to access the network (or accept incoming connections). <rule name>is the title that will be given to this exception entry in the firewall control panel list. | |||
==Sample== | ==Sample== | ||
<highlight-nsis> | |||
; Add NOTEPAD to the authorized list | |||
liteFirewall::AddRule "$WINDIR\Notepad.exe" "liteFirewall Test" | |||
Pop $0 | |||
; Remove NOTEPAD from the authorized list | |||
liteFirewall::RemoveRule "$WINDIR\Notepad.exe" "liteFirewall Test" | |||
Pop $0 | |||
</highlight-nsis> | |||
==Download== | ==Download== | ||
[http://blog.liangsun.org/portfolio/nsis-plugin-litefirewall/ liteFirewall Plugin Homepage] | |||
ZIP archive contains the plug-in DLL as well as documentation, source code and sample script. | |||
[[Category:Plugins]] |
Latest revision as of 15:44, 23 July 2011
Link
Background
There have been 3 firewall plugin for NSIS: Firewall-Disabler Plugin, NSIS Simple Firewall Plugin and NsisFirewall Plugin. But all of them has some shortcomings, so I just write one: liteFirewall. It's based on nsisFirewall. Thanks to it's author.
- Firewall-Disbler plugin: No one will use it.
- NsisFirewall plug-in: It doesn’t support firewall profiles (private, domain or public) on Vista/Windows 7.
- NSIS Simple Firewall Plugin: It doesn’t support Unicode NSIS.
- liteFirewall plug-in: It support both Unicode NSIS and firewall profiles.
Presentation
liteFirewall is based on nsisFirewall, and it also allows you to perform easily 2 tasks:
- Add an application to Windows Firewall exception list
- Remove an application from Windows Firewall exception list
The advantage of liteFirewall compared to nsisFirewall is it can automatically figure out the current profile of windows firewall, and add a corresponding rule for your application.
Usage
liteFirewall::AddRule "<application path>" "<rule name>" liteFirewall::RemoveRule "<application path>" "<rule name>"
<application path>is the full path to the application you want to be authorized to access the network (or accept incoming connections). <rule name>is the title that will be given to this exception entry in the firewall control panel list.
Sample
; Add NOTEPAD to the authorized list liteFirewall::AddRule "$WINDIR\Notepad.exe" "liteFirewall Test" Pop $0 ; Remove NOTEPAD from the authorized list liteFirewall::RemoveRule "$WINDIR\Notepad.exe" "liteFirewall Test" Pop $0
Download
ZIP archive contains the plug-in DLL as well as documentation, source code and sample script.