From 77b6e655e2a75020de3989ef03b6d8872277b92a Mon Sep 17 00:00:00 2001 From: MrVitaly Date: Thu, 8 Aug 2024 23:12:37 +0300 Subject: [PATCH] Fix lib.bat file --- lib.bat | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib.bat b/lib.bat index 8f14bb8..c52dc67 100644 --- a/lib.bat +++ b/lib.bat @@ -1,5 +1,6 @@ -copy "C:\Program Files\PowerToys\PowerToys.Common.UI.dll" "lib\PowerToys.Common.UI.dll" -copy "C:\Program Files\PowerToys\PowerToys.ManagedCommon.dll" "lib\PowerToys.ManagedCommon.dll" -copy "C:\Program Files\PowerToys\PowerToys.Settings.UI.Lib.dll" "lib\PowerToys.Settings.UI.Lib.dll" -copy "C:\Program Files\PowerToys\Wox.Infrastructure.dll" "lib\Wox.Infrastructure.dll" -copy "C:\Program Files\PowerToys\Wox.Plugin.dll" "lib\Wox.Plugin.dll" \ No newline at end of file +mkdir "lib" +copy "%LOCALAPPDATA%\PowerToys\PowerToys.Common.UI.dll" "lib\PowerToys.Common.UI.dll" +copy "%LOCALAPPDATA%\PowerToys\PowerToys.ManagedCommon.dll" "lib\PowerToys.ManagedCommon.dll" +copy "%LOCALAPPDATA%\PowerToys\PowerToys.Settings.UI.Lib.dll" "lib\PowerToys.Settings.UI.Lib.dll" +copy "%LOCALAPPDATA%\PowerToys\Wox.Infrastructure.dll" "lib\Wox.Infrastructure.dll" +copy "%LOCALAPPDATA%\PowerToys\Wox.Plugin.dll" "lib\Wox.Plugin.dll" \ No newline at end of file