Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Deepak_dhikale
Contributor III
Contributor III

Qliksense backup util with automation

Hi All

I am taking Qlik sense backup with the help of util.exe

but I want to integrate it with windows scheduler .but we have to put some credentials like yes or no.

but i want auto yes over there.

i am attaching screenshots for ref.

 

please help me if anyone knows the solution

IMG_20210608_131948.jpg

 

IMG_20210608_131958.jpg

 

 

 

   thanks 

[ will -f help in this case for silent backup? if yes then how and where to put ?]

Also after that i want to delete old backup with email notification.

Echo Forfiles to delete files older than 5 days
forfiles -p "E:\Backup\ALC_full_backup" -s -m *.*  /D -4 /C "cmd /c del /q @path"
echo Done!
timeout 30
powershell.exe -ExecutionPolicy remotesigned -File C:\Desktop\Deepak\fullbackupmail.ps1
exit
 

Regards'

Deepak

 
1 Solution

Accepted Solutions
Adam_R
Support
Support

Hi Deepak,

Seem like the feature you want to disable, is the Windows User Account control:

Disable User Account Control (UAC) - Windows Server | Microsoft Docs

View solution in original post

3 Replies
Adam_R
Support
Support

Hi Deepak,

Seem like the feature you want to disable, is the Windows User Account control:

Disable User Account Control (UAC) - Windows Server | Microsoft Docs

Bhagwat09
Contributor II
Contributor II

Hey Thanks @Adam_R 

But I Already got the solution and it is working fine since then.

Eugene_Sleator
Support
Support

Hi @Deepak_dhikale  it is not necessary to disable UAC nor advisable due to the obvious security implications.
You can run the scheduler with admin privilege's and bypass UAC. Here is a guide on  how to set up a scheduled task bypassing  UAC. 

How to bypass uac using task scheduler 


Hope this helps