Skip to content

Commit 8b24c2b

Browse files
committed
Merge pull request #2 from AzureAutomationTeam/dev
Dev
2 parents 0dd816c + 776ad94 commit 8b24c2b

File tree

2,043 files changed

+472596
-216182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,043 files changed

+472596
-216182
lines changed

ChangeLog.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,51 @@
1+
## 2016.02.02 version 1.1.1
2+
* Azure RemoteApp: Organizational Unit in Azure RemoteApp RDFE cmdlets now accepts Unicode characters.
3+
## 2016.01.12 version 1.1.0
4+
* Azure SQL Database: Threat Detection policies:
5+
* Using new Threat Detection Types
6+
* Azure Redis Cache: new cmdlets for enabling and disabling diagnostics
7+
* Set-AzureRmRedisCacheDiagnostics
8+
* Remove-AzureRmRedisCacheDiagnostics
9+
* Azure Websites: New cmdlets for managing SSL binding
10+
* Get-AzureRmWebAppCertificate
11+
* New-AzureRmWebAppSSLBinding
12+
* Get-AzureRmWebAppSSLBinding
13+
* Remove-AzureRmWebAppSSLBinding
14+
* Added AseName and AseResourceGroupName parameters in New-AzureRmWebApp and New-AzureRmAppServicePlan cmdlet
15+
* Added support for cloning all deployment slots associated with source website
16+
* Azure Stream Analytics: Added new cmdlet support for Functions.
17+
* New-AzureRmStreamAnalyticsFunction
18+
* Get-AzureRmStreamAnalyticsFunction
19+
* Test-AzureRmStreamAnalyticsFunction
20+
* Get-AzureRmStreamAnalyticsDefaultFunctionDefinition
21+
* Remove-AzureRmStreamAnalyticsFunction
22+
* Azure Batch
23+
* New-AzureBatchTask now accepts a MultiInstanceSettings parameter
24+
* Get-AzureBatchSubtask cmdlet added
25+
* Enable-AzureBatchComputeNodeScheduling / Disable-AzureBatchComputeNodeScheduling cmdlets added
26+
* Enable-AzureBatchAutoScale and New-AzureBatchPool now accept an AutoScaleEvaluationInterval parameter.
27+
28+
## 2015.12.14 version 1.0.2
29+
* Azure Compute (ARM):
30+
* Enable BGInfo extension by default
31+
* Fix the issue when an OS disk is in a different resource group: Now New-AzureRmVM does not create a new storage account for boot diagnostics.
32+
* Add Set-AzureRmBginfoExtension cmdlet
33+
* Make WinRMCertificateUrl parameter mandatory when Set-AzureRmVMOperatingSystem cmdlet is performed with WinRMHttps switch
34+
* Azure Compute (Service Management):
35+
* Fix the issue when adding a new VM without a data disk
36+
* Add ExtensionId parameter for all extension cmdlets
37+
* Expose RemoteAccessCertificateThumbprint property for Get-AzureVM cmdlet
138
* Azure SQL Database: new cmdlets for managing database threat detection policies:
239
* Get-AzureRmSqlDatabaseThreatDetectionPolicy
340
* Set-AzureRmSqlDatabaseThreatDetectionPolicy
441
* Remove-AzureRmSqlDatabaseThreatDetectionPolicy
542
* Azure RemoteApp: New cmdlets for managing stale machine accounts in AD:
643
* Get-AzureRemoteAppVmStaleAdObject
744
* Clear-AzureRemoteAppVmStaleAdObject
8-
45+
* ARM Storage:
46+
* Fix alias missing issue
47+
48+
949
## 2015.11.09 version 1.0.1
1050
* Azure Compute
1151
* Added cmdlets for managing VM DiskEncryption extension

build.proj

Lines changed: 6 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,14 @@
4545
<Scope Condition=" $(Scope) == '' " >all</Scope>
4646
</PropertyGroup>
4747
<ItemGroup>
48-
<CmdletSolutionsToBuild Include=".\src\ResourceManager\**\*.sln;.\src\ServiceManagement\ServiceManagement.sln" Condition=" '$(Scope)' == 'all' "/>
48+
<CmdletSolutionsToBuild Include=".\src\ResourceManager\**\*.sln;.\src\ServiceManagement\ServiceManagement.sln"
49+
Exclude=".\src\ResourceManager\Intune\*.sln"
50+
Condition=" '$(Scope)' == 'all' "/>
4951
<CmdletSolutionsToBuild Include=".\src\ResourceManager\$(Scope)\*.sln"
5052
Condition=" '$(Scope)' != 'all' and '$(Scope)' != 'ServiceManagement' and '$(Scope)' != 'AzureStorage' "/>
5153
<CmdletSolutionsToBuild Include=".\src\ServiceManagement\ServiceManagement.sln"
5254
Condition=" '$(Scope)' == 'ServiceManagement' or '$(Scope)' == 'AzureStorage' "/>
5355
<SetupSln Include=".\setup\azurepowershell.sln" />
54-
<SetupPowershellGetSln Include=".\setup-powershellget\powershellget.sln" />
5556
</ItemGroup>
5657

5758
<!--
@@ -80,13 +81,6 @@
8081
Properties="Configuration=$(Configuration);Platform=Any CPU"
8182
ContinueOnError="false" />
8283

83-
<MSBuild
84-
Projects="@(SetupPowershellGetSln)"
85-
Targets="Clean"
86-
Properties="Configuration=$(Configuration);Platform=Any CPU"
87-
ContinueOnError="false"
88-
Condition=" '$(Scope)' == 'all' "/>
89-
9084
<!-- Delete the publish files -->
9185
<Message Importance="high" Text="Cleaning publish files..." ContinueOnError="false" />
9286
<ItemGroup>
@@ -161,14 +155,6 @@
161155

162156
<CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " />
163157

164-
<Message Importance="high" Text="Building Setup..." />
165-
<MSBuild
166-
Projects="@(SetupPowershellGetSln)"
167-
Targets="Build"
168-
Properties="Configuration=$(Configuration);Platform=Any CPU"
169-
ContinueOnError="false"
170-
Condition=" '$(Scope)' == 'all' "/>
171-
172158
<MSBuild
173159
Projects="@(SetupSln)"
174160
Targets="Build"
@@ -203,8 +189,6 @@
203189
</GetFrameworkSdkPath>
204190

205191
<!-- Copying shortcut to be signed -->
206-
<Copy SourceFiles="$(LibraryRoot)setup-powershellget\Setup\ShortcutStartup.ps1"
207-
DestinationFolder="$(LibrarySourceFolder)\Package\$(Configuration)" />
208192
<Copy SourceFiles="$(LibraryRoot)tools\AzureRM\AzureRM.psd1"
209193
DestinationFolder="$(LibrarySourceFolder)\Package\$(Configuration)" />
210194
<Copy SourceFiles="$(LibraryRoot)tools\AzureRM\AzureRM.psm1"
@@ -235,7 +219,7 @@
235219
UnsignedFiles="@(DelaySignedAssembliesToSign)"
236220
DestinationPath="$(LibrarySourceFolder)\Package\$(Configuration)"
237221
BasePath="$(LibrarySourceFolder)\Package\$(Configuration)"
238-
Certificates="72, 10006"
222+
Certificates="72, 401"
239223
SigningLogPath="$(LibraryRoot)\signing.log"
240224
ToolsPath="$(CIToolsPath)"
241225
Condition="!$(DelaySign) and '@(DelaySignedAssembliesToSign)' != ''"/>
@@ -246,7 +230,7 @@
246230
UnsignedFiles="@(ScriptsToSign)"
247231
DestinationPath="$(LibrarySourceFolder)\Package\$(Configuration)"
248232
BasePath="$(LibrarySourceFolder)\Package\$(Configuration)"
249-
Certificates="10006"
233+
Certificates="402"
250234
SigningLogPath="$(LibraryRoot)\signing-scripts.log"
251235
ToolsPath="$(CIToolsPath)"
252236
Condition="!$(DelaySign) and '@(ScriptsToSign)' != ''"/>
@@ -260,8 +244,6 @@
260244
Condition="!$(DelaySign) and '@(DelaySignedAssembliesToSign)' != ''"/>
261245

262246
<!-- Copying signed shortcut back -->
263-
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\ShortcutStartup.ps1"
264-
DestinationFolder="$(LibraryRoot)setup-powershellget\Setup" />
265247
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\AzureRM.psd1"
266248
DestinationFolder="$(LibraryRoot)tools\AzureRM" />
267249
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\AzureRM.psm1"
@@ -290,7 +272,7 @@
290272
UnsignedFiles="@(InstallersToSign)"
291273
DestinationPath="$(LibraryRoot)\signed"
292274
SigningLogPath="$(LibraryRoot)\msi-signing.log"
293-
Certificates="10006"
275+
Certificates="402"
294276
ToolsPath="$(CIToolsPath)"
295277
Condition="!$(DelaySign) and '@(InstallersToSign)' != ''"/>
296278

setup-powershellget/Setup/CustomAction.config

Lines changed: 0 additions & 32 deletions
This file was deleted.

setup-powershellget/Setup/CustomAction.cs

Lines changed: 0 additions & 110 deletions
This file was deleted.

setup-powershellget/Setup/Setup.csproj

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)