Allow-QlikHttpProxy.ps1

function Allow-QlikHttpProxy {
    <#
    .SYNOPSIS
    This function ...
 
    .DESCRIPTION
    A bit more description
 
    .PARAMETER FromPipeline
    Shows how to process input from the pipeline, remaining parameters or by named parameter.
 
    .EXAMPLE
    Allow-QlikHttpProxy 'abc'
 
    Description of the example.
 
    #>


    <# Enable -Confirm and -WhatIf. #>
    [CmdletBinding(SupportsShouldProcess = $true)]
    param(
    [parameter(Mandatory=$true)]
    [string] $MachineName,
    [parameter(Mandatory=$false)]
    [System.Management.Automation.PSCredential] $mycreds 
  )

    begin {
    }

    process {

#$secpasswd = ConvertTo-SecureString “P@ssword123” -AsPlainText -Force
#$mycreds = New-Object System.Management.Automation.PSCredential (“.\qlikuser”, $secpasswd)

        $Artifact = gci $ArtifactPath
        $session = New-PSSession -ComputerName $MachineName -Credential $mycreds

        Invoke-Command -Session $session -ScriptBlock{        
                param($virtualProxies)
                gci 'C:\Program Files\WindowsPowerShell\Modules'  -Recurse | Unblock-File
#Trust All Certs
add-type @'
    using System.Net;
    using System.Security.Cryptography.X509Certificates;
    public class TrustAllCertsPolicy : ICertificatePolicy {
        public bool CheckValidationResult(
            ServicePoint srvPoint, X509Certificate certificate,
            WebRequest request, int certificateProblem) {
            return true;
        }
    }
'@


[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::TLS12
Connect-Qlik

            
                Get-QlikProxy |   Update-QlikProxy -AllowHttp  $true



                }
        }

    end {
    }
}

if ($loadingModule) {
    Export-ModuleMember -Function 'Allow-QlikHttpProxy'
}