We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentb41c523 commit8a61183Copy full SHA for 8a61183
.github/workflows/ci.yaml
@@ -154,13 +154,19 @@ jobs:
154
steps:
155
-name:Checkout code
156
uses:actions/checkout@v4
157
-
158
- -name:Downloadand InstallImDisk
+
+ -name:Download ImDisk
159
shell:powershell
160
run:|
161
- $url = "https://sourceforge.net/projects/imdisk-toolkit/files/20190130/ImDiskTk.exe"
162
- Invoke-WebRequest -Uri $url -OutFile "ImDiskTk.exe"
163
- Start-Process -FilePath "ImDiskTk.exe" -ArgumentList "/fullsilent" -Wait -Verb RunAs
+ $url = "https://sourceforge.net/projects/imdisk-toolkit/files/20241123/ImDiskTk-x64.zip/download"
+ Invoke-WebRequest -Uri $url -OutFile "ImDiskTk.zip"
+ Expand-Archive -Path "ImDiskTk.zip" -DestinationPath "ImDiskTk"
164
165
+ -name:Install ImDisk
166
+shell:cmd
167
+run:|
168
+ cd ImDiskTk
169
+ install.bat /silent
170
171
-name:Create RAM Disk
172
shell:cmd