Skip to content

Commit 55c550c

Browse files
committed
Update Readme
1 parent b380a27 commit 55c550c

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

README.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,49 @@ Revit files have the following extensions:
1818
## Dependencies
1919

2020
* [SharpShell](https://github.com/dwmkerr/sharpshell)
21+
* [ServerRegistrationManager](https://www.nuget.org/packages/ServerRegistrationManager)
2122
* [ricaun.Revit.FileInfo](https://github.com/ricaun-io/ricaun.Revit.FileInfo)
2223
* [ricaun.Revit.Installation](https://github.com/ricaun-io/ricaun.Revit.Installation)
2324

2425
## Installation
2526

27+
### Installation with InnoSetup
28+
29+
In the InnoSetup the `ServerRegistrationManager.exe` is used to install/uninstall the extension.
30+
31+
```
32+
[Run]
33+
Filename: "{app}\ServerRegistrationManager.exe"; Flags: postinstall runascurrentuser; Parameters: "install ""{app}\RevitShell.dll"" -codebase"
34+
35+
[UninstallRun]
36+
Filename: "{app}\ServerRegistrationManager.exe"; Parameters: "uninstall ""{app}\RevitShell.dll""";
37+
```
38+
39+
### Installation with ServerRegistrationManager
40+
41+
Download `ServerRegistrationManager.zip` to install the extension.
42+
43+
* [ServerRegistrationManager.zip](https://github.com/dwmkerr/sharpshell/releases/latest/)
44+
45+
Install:
46+
47+
```cmd
48+
ServerRegistrationManager.exe install RevitShell.dll
49+
```
50+
51+
Uninstall:
52+
53+
```cmd
54+
ServerRegistrationManager.exe uninstall RevitShell.dll
55+
```
56+
57+
### Installation with ServerManager
58+
2659
Download `ServerManager.zip` to install the extension.
2760

2861
* [ServerManager.zip](https://github.com/dwmkerr/sharpshell/releases/latest/)
2962

30-
`Todo...`
63+
Load `RevitShell.dll` using `ServerManager.exe` and install/unistall the server.
3164

3265
## Release
3366

RevitShell/RevitShell.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="SharpShell" Version="*" />
11+
<PackageReference Include="ServerRegistrationManager" Version="*" />
1112
<PackageReference Include="ricaun.Revit.FileInfo" Version="*" />
1213
<PackageReference Include="ricaun.Revit.Installation" Version="*" />
1314
</ItemGroup>

0 commit comments

Comments
 (0)