File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -154,13 +154,19 @@ jobs:
154
154
steps :
155
155
- name : Checkout code
156
156
uses : actions/checkout@v4
157
-
158
- - name : Download and Install ImDisk
157
+
158
+ - name : Download ImDisk
159
159
shell : powershell
160
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
161
+ $url = "https://sourceforge.net/projects/imdisk-toolkit/files/20241123/ImDiskTk-x64.zip/download"
162
+ Invoke-WebRequest -Uri $url -OutFile "ImDiskTk.zip"
163
+ Expand-Archive -Path "ImDiskTk.zip" -DestinationPath "ImDiskTk"
164
+
165
+ - name : Install ImDisk
166
+ shell : cmd
167
+ run : |
168
+ cd ImDiskTk
169
+ install.bat /silent
164
170
165
171
- name : Create RAM Disk
166
172
shell : cmd
You can’t perform that action at this time.
0 commit comments