-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.ps1
35 lines (30 loc) · 1 KB
/
install.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Copy-Item `
-Path ".\definitions\snapmaker2.def.json" `
-Destination "$Env:APPDATA\cura\4.8\definitions\snapmaker2.def.json" `
-Force `
-Verbose
Copy-Item `
-Path ".\definitions\snapmaker2_A350.def.json" `
-Destination "$Env:APPDATA\cura\4.8\definitions\snapmaker2_A350.def.json" `
-Force `
-Verbose
Copy-Item `
-Path ".\extruders\snapmaker_extruder_0.def.json" `
-Destination "$Env:APPDATA\cura\4.8\extruders\snapmaker_extruder_0.def.json" `
-Force `
-Verbose
Copy-Item `
-Path ".\quality\snapmaker2\snapmaker2_fast.inst.cfg" `
-Destination "$Env:APPDATA\cura\4.8\quality\snapmaker2\snapmaker2_fast.inst.cfg" `
-Force `
-Verbose
Copy-Item `
-Path ".\quality\snapmaker2\snapmaker2_normal.inst.cfg" `
-Destination "$Env:APPDATA\cura\4.8\quality\snapmaker2\snapmaker2_normal.inst.cfg" `
-Force `
-Verbose
Copy-Item `
-Path ".\quality\snapmaker2\snapmaker2_high.inst.cfg" `
-Destination "$Env:APPDATA\cura\4.8\quality\snapmaker2\snapmaker2_high.inst.cfg" `
-Force `
-Verbose