Skip to content

Instantly share code, notes, and snippets.

@Nillth
Created May 2, 2023 22:17
Show Gist options
  • Save Nillth/0f13c48ae2b4d556ba995a5c44149f2b to your computer and use it in GitHub Desktop.
Save Nillth/0f13c48ae2b4d556ba995a5c44149f2b to your computer and use it in GitHub Desktop.
param
(
[Parameter(Mandatory = $true)]
[string]$TaskName
)
Connect-QlikSense -TrustAllCertificates
$Tasks = Get-QSReloadtask -Filter "Name eq '$($TaskName)'"
foreach($Task in $Tasks){
Add-QSTask -Start -Id $Task.Id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment