@@ -79,30 +79,6 @@ function Create-ModulePsm1
79
79
}
80
80
}
81
81
82
- function Disable-StrongSignValidation
83
- {
84
- reg DELETE " HKLM\Software\Microsoft\StrongName\Verification" / f > $null
85
- reg ADD " HKLM\Software\Microsoft\StrongName\Verification\*,*" / f > $null
86
- if ($env: PROCESSOR_ARCHITECTURE -eq " AMD64" )
87
- {
88
- reg DELETE " HKLM\Software\Wow6432Node\Microsoft\StrongName\Verification" / f > $null
89
- reg ADD " HKLM\Software\Wow6432Node\Microsoft\StrongName\Verification\*,*" / f > $null
90
- }
91
- Restart-Service msiserver
92
- }
93
-
94
- function Enable-StrongSignValidation
95
- {
96
- reg DELETE " HKLM\Software\Microsoft\StrongName\Verification\*,*" / f > $null
97
- reg ADD " HKLM\Software\Microsoft\StrongName\Verification" / f > $null
98
- if ($env: PROCESSOR_ARCHITECTURE -eq " AMD64" )
99
- {
100
- reg DELETE " HKLM\Software\Wow6432Node\Microsoft\StrongName\Verification\*,*" / f > $null
101
- reg ADD " HKLM\Software\Wow6432Node\Microsoft\StrongName\Verification" / f > $null
102
- }
103
- Restart-Service msiserver
104
- }
105
-
106
82
function Find-CompleterAttribute
107
83
{
108
84
[CmdletBinding ()]
@@ -288,8 +264,6 @@ if ($Profile -eq "Stack")
288
264
$packageFolder = " $PSScriptRoot \..\src\Stack"
289
265
}
290
266
291
-
292
- Disable-StrongSignValidation
293
267
$resourceManagerRootFolder = " $packageFolder \$buildConfig \ResourceManager\AzureResourceManager"
294
268
$publishToLocal = test-path $repositoryLocation
295
269
$templateLocation = " $PSScriptRoot \AzureRM.Example.psm1"
@@ -357,5 +331,3 @@ if (($scope -eq 'All') -or ($scope -eq 'AzureRM')) {
357
331
Write-Host " Updated Azure module"
358
332
}
359
333
}
360
-
361
- Enable-StrongSignValidation
0 commit comments