Skip to content

Commit

Permalink
Merge pull request #775 from liquidat/security/nuget
Browse files Browse the repository at this point in the history
Fix security workshop deployment
  • Loading branch information
IPvSean authored Apr 8, 2020
2 parents 8d36e88 + ed3e2c1 commit a073170
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions provisioner/roles/windows_ws_setup/tasks/smartconsole.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@
- vcredist2012
state: present

- name: Set strong cryptography on 64 bit .Net Framework (version 4 and above)
win_shell: >
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord
- name: Set strong cryptography on 32 bit .Net Framework (version 4 and above)
win_shell: >
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\.NetFramework\v4.0.30319' -Name 'SchUseStrongCrypto' -Value '1' -Type DWord
- name: Ensure the required NuGet package provider version is installed
win_shell: Find-PackageProvider -Name Nuget -ForceBootstrap -IncludeDependencies -Force

Expand Down

0 comments on commit a073170

Please sign in to comment.