summaryrefslogtreecommitdiff
path: root/windows/win_firewall_rule.ps1
diff options
context:
space:
mode:
authorDreamcat4 <dreamcat4@gmail.com>2015-10-05 21:53:11 +0100
committerDreamcat4 <dreamcat4@gmail.com>2015-10-05 21:53:11 +0100
commit469d22df973508b163a4aae028b8dff6faafbb3f (patch)
tree2b57818e94eaa926bb46caabda4333922b57f59f /windows/win_firewall_rule.ps1
parent6c5a4a14ef415e4635f7e0dc7fcb345f0c617a98 (diff)
downloadansible-modules-extras-469d22df973508b163a4aae028b8dff6faafbb3f.tar.gz
fix: The names of firewall profiles are different on win10 & win2008r2
Hi again. This commit removes a small portion of your script's own internal error checking. In specific: for the value of the profile: key. This is essential to avoid errors on other verisons of the windows operating system which are not win2008r2 (your version). For example: on win10 (and most likely win8x too), the names of the profiles don't include the values 'current' and 'all'. But instead the values are 'Public' 'Private' 'Domain' and 'Any. But in addition, there are also certain combinatorial values, such as profile=Public,Private etc. Which is too many to error check yourself. Yet removing the error checking here should not cause any ill effects however: since the netsh advfirewall ... cmds themselves to add / remove / modify actually to their own error checking of the profile=value. So when the cmd is run, it will error out itself with an appropriate / informative error msg. No harm done. Therefore please remove the highlighed portions from your own script. It is essential for interoperability with win10 and win8x. Many thanks.
Diffstat (limited to 'windows/win_firewall_rule.ps1')
-rw-r--r--windows/win_firewall_rule.ps18
1 files changed, 1 insertions, 7 deletions
diff --git a/windows/win_firewall_rule.ps1 b/windows/win_firewall_rule.ps1
index 0b0a2cd5..8ef2d83a 100644
--- a/windows/win_firewall_rule.ps1
+++ b/windows/win_firewall_rule.ps1
@@ -246,13 +246,7 @@ foreach ($arg in $args){
};
$winprofile=Get-Attr $params "profile" "current";
-if (($winprofile -ne 'current') -or ($winprofile -ne 'domain') -or ($winprofile -ne 'standard') -or ($winprofile -ne 'all') ) {
- $misArg+="Profile";
- $msg+=@("for the Profile parameter only the values 'current', 'domain', 'standard' or 'all' are allowed");
-} else {
-
- $fwsettings.Add("profile", $winprofile)
-}
+$fwsettings.Add("profile", $winprofile)
if ($($($misArg|measure).count) -gt 0){
$result=New-Object psobject @{