diff options
author | chris_bednarski <Chris.Bednarski@minfos.com.au> | 2023-09-21 16:03:28 +1000 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2023-11-19 12:17:13 -0500 |
commit | dfb7512b85536b7726080648f2228cf8d0153724 (patch) | |
tree | d053018ee47afe7e349dda6739a6580c771a1a3d /src/test/burn | |
parent | 80e604761b4f43b9b79a4878fcae360b071a7c35 (diff) | |
download | wix-dfb7512b85536b7726080648f2228cf8d0153724.tar.gz wix-dfb7512b85536b7726080648f2228cf8d0153724.tar.bz2 wix-dfb7512b85536b7726080648f2228cf8d0153724.zip |
add firewall extension decompiler, make msi modifications work, add all attributes
Diffstat (limited to 'src/test/burn')
-rw-r--r-- | src/test/burn/WixTestTools/Firewall/RuleDetails.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/test/burn/WixTestTools/Firewall/RuleDetails.cs b/src/test/burn/WixTestTools/Firewall/RuleDetails.cs index d1e53de4..8c8cdda3 100644 --- a/src/test/burn/WixTestTools/Firewall/RuleDetails.cs +++ b/src/test/burn/WixTestTools/Firewall/RuleDetails.cs | |||
@@ -146,7 +146,9 @@ namespace WixTestTools.Firewall | |||
146 | /// This parameter allows the specification of an array of interface LUIDs (locally unique identifiers) supplied as strings.<br/> | 146 | /// This parameter allows the specification of an array of interface LUIDs (locally unique identifiers) supplied as strings.<br/> |
147 | /// This is commonly used by USB RNDIS (Remote Network Driver Interface Specification) devices to restrict traffic to a specific non-routable interface.<br/> | 147 | /// This is commonly used by USB RNDIS (Remote Network Driver Interface Specification) devices to restrict traffic to a specific non-routable interface.<br/> |
148 | /// Use <b>netsh trace show interfaces</b> to show a list of local interfaces and their LUIDs.<br/> | 148 | /// Use <b>netsh trace show interfaces</b> to show a list of local interfaces and their LUIDs.<br/> |
149 | /// Example: new object[] { "Wi-Fi", "Local Area Connection* 14" } | 149 | /// The interfaces are stored in the registry as GUIDs, but need to be passed to the API as text. eg from the registry<br/> |
150 | /// v2.30|Action=Allow|Active=TRUE|Dir=In|Protocol=6|LPort=23456|IF={423411CD-E627-4A1A-9E1F-C5BE6CD2CC99}|IF={49A98AD0-8379-4079-A445-77066C52E338}|Name=WiXToolset401 Test - 0002|Desc=WiX Toolset firewall exception rule integration test - minimal port properties|<br/> | ||
151 | /// Example API value: new object[] { "Wi-Fi", "Local Area Connection* 14" } | ||
150 | /// </summary> | 152 | /// </summary> |
151 | public object[] Interfaces { get; set; } | 153 | public object[] Interfaces { get; set; } |
152 | 154 | ||
@@ -227,13 +229,13 @@ namespace WixTestTools.Firewall | |||
227 | public string LocalUserOwner { get; set; } | 229 | public string LocalUserOwner { get; set; } |
228 | 230 | ||
229 | /// <summary> | 231 | /// <summary> |
230 | /// This property is optional. It specifies a list of authorized local users for an app container.<br/> | 232 | /// This property is optional. It specifies a list of authorized local users for an app container (using SDDL).<br/> |
231 | /// Example: "O:LSD:(A;;CC;;;S-1-5-84-0-0-0-0-0)" | 233 | /// Example: "O:LSD:(A;;CC;;;S-1-5-84-0-0-0-0-0)" |
232 | /// </summary> | 234 | /// </summary> |
233 | public string LocalUserAuthorizedList { get; set; } | 235 | public string LocalUserAuthorizedList { get; set; } |
234 | 236 | ||
235 | /// <summary> | 237 | /// <summary> |
236 | /// This property is optional. It specifies a list of remote users who are authorized to access an app container.<br/> | 238 | /// This property is optional. It specifies a list of remote users who are authorized to access an app container (using SDDL).<br/> |
237 | /// </summary> | 239 | /// </summary> |
238 | public string RemoteUserAuthorizedList { get; set; } | 240 | public string RemoteUserAuthorizedList { get; set; } |
239 | 241 | ||