12-13-2021 06:39 AM
Item Version
---- -------
Armoury Crate UWP App 5.0.10.0
ROG Live Service 1.3.8.0
AURA Service (Lighting Service) 3.05.29
Armoury Crate lite service 5.0.8
ASUS AIOFan HAL 1.1.40.0
ASUS AURA Extension Card HAL 1.1.0.13
ASUS AURA Motherboard HAL 1.2.6.0
ASUS Aac_GmAcc HAL 1.0.4.0
AacVGA 0.0.4.3
KingstonDram 1.1.12
AURA DRAM Component 1.1.16
CorsairAsusPlugin 2.0.0
ENE RGB HAL 1.1.37.0
ENE_EHD_M2_HAL 1.0.9.1
PHISON HAL 1.0.9.0
Patriot Viper DRAM RGB 1.0.9.2
Patriot Viper M2 SSD RGB 1.0.6.4
Universal Holtek RGB DRAM 1.0.0.2
WD_BLACK AN1500 1.0.14.0
12-14-2021 02:00 PM
madding wrote:
I was able to execute it by running it as admin. I've also set the task with admin mode
12-15-2021 06:39 AM
Jimbo93 wrote:
does that mean your windows profile is not in the Administrator group? I will never run my windows system that way. Good for you though.
12-17-2021 02:49 AM
Jimbo93 wrote:
does that mean your windows profile is not in the Administrator group? I will never run my windows system that way. Good for you though.
12-15-2021 08:00 PM
12-15-2021 08:06 PM
Nirmal97 wrote:
I have also updated to the latest version but aura wallpapers are not listed in the devices tab. How can i fix this?
12-19-2021 01:44 AM
12-19-2021 02:45 AM
12-19-2021 04:02 PM
12-20-2021 01:46 AM
lokybou wrote:
# Run As Administrator
# create a task run as admin on opening session windows
# powershell 7.2
Clear-Host
$pathProcessFirst = "C:\Program Files\ASUS\Aura Wallpaper Service\Aura Wallpaper Service.exe"
$pathProcessSecond = "C:\Program Files\ASUS\Aura Wallpaper Service\AuraWallpaperService.exe"
function StartAndGetProcess{
Start-Process -FilePath $pathProcessFirst -Confirm:$false
Start-Process - -FilePath $pathProcessSecond -Confirm:$false
Get-Process | where-Object {$_.ProcessName -eq "AuraWallpaperService"} | Stop-Process -Confirm:$false
}
$ProcessName = (Get-Process | where-Object {$_.ProcessName -eq "Aura Wallpaper Service"}).ProcessName
try{
if ([String]::IsNullOrEmpty($ProcessName)){
StartAndGetProcess
}else{
StartAndGetProcess
# for close the pop up window.
Get-Process | where-Object {$_.ProcessName -eq "AuraWallpaperService"} | Stop-Process -Confirm:$false
}
}catch{
Write-Host $_.exception.message;
}
12-21-2021 06:11 AM