UTC: 2019-07-15 19:28
ryancbutler/Chocolatey-Packages
This file is automatically generated by the update_all.ps1 script using the AU module.
$download = Invoke-WebRequest -UseBasicParsing -Uri ("https://www.citrix.com/downloads/workspace-app/windows/workspace-app-for-windows-latest.html") -SessionVariable websession | |
$href = $download.Links|Where-Object {$_.rel -like "*CitrixWorkspaceApp.exe*"} | |
$DLurl = "https:" + $href.rel | |
Invoke-WebRequest -Uri ($DLurl) -WebSession $websession -UseBasicParsing -OutFile "C:\temp\CitrixWorkspaceApp.exe" -Verbose | |
$version = $download.RawContent | Select-String '(?<=.*<p>Version: ).+?(?=<\/p>.*)' -AllMatches | ForEach-Object { $_.Matches.Value } | Select-Object -Unique |
--- | |
# Source: calico/templates/calico-config.yaml | |
# This ConfigMap is used to configure a self-hosted Calico installation. | |
kind: ConfigMap | |
apiVersion: v1 | |
metadata: | |
name: calico-config | |
namespace: kube-system | |
data: | |
# Typha is disabled. |
<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04"> | |
<Obj RefId="0"> | |
<TN RefId="0"> | |
<T>System.Management.Automation.PSCustomObject</T> | |
<T>System.Object</T> | |
</TN> | |
<MS> | |
<S N="Path">HKLM:\SOFTWARE\Policies\Login Consultants\BISF</S> | |
<S N="Name">LIC_BISF_POL_CTXOE</S> | |
<I32 N="Value">1</I32> |
UTC: 2019-07-15 19:28
ryancbutler/Chocolatey-Packages
This file is automatically generated by the update_all.ps1 script using the AU module.
UTC: 2019-07-15 19:17
ryancbutler/Chocolatey-Packages
This file is automatically generated by the update_all.ps1 script using the AU module.
UTC: 2019-07-15 18:29
{github_user}/{repository}
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
UTC: 2025-04-20 12:01
ryancbutler/Chocolatey-Packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
UTC: 2019-07-15 16:23
{github_user}/{repository}
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
UTC: 2019-07-15 16:08
ryancbutler/Chocolatey-Packages
This file is automatically generated by the update_all.ps1 script using the AU module.
Ignored | History | Force Test | Releases
$aplip = "192.168.1.100" | |
$pass = "mysupersecretpassword" | |
$username = "administrator" | |
$SecurePassword = ConvertTo-SecureString $Pass -AsPlainText -Force | |
$Credential = New-Object System.Management.Automation.PSCredential ($Username, $SecurePassword) | |
$websession = Connect-alsession -aplip $aplip -Credential $Credential -Verbose | |
#Final Array | |
$final = @() |