|
8 | 8 |
|
9 | 9 | [](https://gitter.im/ServerActions/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) |
10 | 10 | [](LICENSE "MIT License Copyright © Anthony Duguid") |
11 | | -[](https://github.com/aduguid/ServerActions/releases/latest) |
| 11 | +[](https://github.com/Office-projects/ServerActions/releases/latest) |
12 | 12 |
|
13 | 13 | <!--- |
14 | | -[](https://github.com/aduguid/ServerActions/raw/master/VBA/ServerActions.xlsm?raw=true "Download the VBA Add-In") |
| 14 | +[](https://github.com/Office-projects/ServerActions/raw/master/VBA/ServerActions.xlsm?raw=true "Download the VBA Add-In") |
15 | 15 | ---> |
16 | | -This is an Excel Add-In written in Microsoft Visual Studio Community 2017 C#/VB.NET and VBA. It allows the user to use an Excel table to ping a list of servers and create a file for Microsoft Remote Desktop Manager. This is used for quickly determining which servers are offline in a list. This has now been tested on Windows (7, 8.1, 10) & Excel (2010, 2013, 2016). |
| 16 | + |
| 17 | +:new: I'm currently working on the C# version. |
| 18 | + |
| 19 | +This Add-In allows the user to ping a list of servers and create a file for Microsoft Remote Desktop Manager from an Excel table. This is used for quickly determining which servers are offline in a list. |
| 20 | + |
17 | 21 | <!--- |
18 | 22 | [](LICENSE "MIT License Copyright © 2017 Anthony Duguid") |
19 | | -[](http://github.com/aduguid/ServerActions) |
20 | | -[](http://github.com/aduguid/ServerActions/fork) |
| 23 | +[](http://github.com/Office-projects/ServerActions) |
| 24 | +[](http://github.com/Office-projects/ServerActions/fork) |
21 | 25 |
|
22 | 26 | <br> |
23 | 27 |
|
@@ -70,15 +74,15 @@ Instructions for installation of VBA and VSTO versions. |
70 | 74 |
|
71 | 75 | ### VBA |
72 | 76 | How to install the VBA version |
73 | | -1. Download the VBA Add-In file [](https://github.com/aduguid/ServerActions/raw/master/VBA/ServerActions.xlam?raw=true "Download the VBA Add-In"). |
| 77 | +1. Download the VBA Add-In file [](https://github.com/Office-projects/ServerActions/raw/master/VBA/ServerActions.xlam?raw=true "Download the VBA Add-In"). |
74 | 78 | 2. Copy the file to the XLSTART folder on your computer. ```%AppData%\Microsoft\Excel\XLSTART\``` |
75 | 79 | 3. Close all open instances of Excel and then launch Excel. The new ribbon should appear. |
76 | 80 |
|
77 | 81 | ### VSTO |
78 | 82 | How to install the VSTO version |
79 | | -1. Download AnthonyDuguid.pfx And Install At Root Level [](https://github.com/aduguid/ServerActions/VB/blob/master/AnthonyDuguid.pfx?raw=true "Download AnthonyDuguid.pfx And Install At Root Level For VSTO") |
| 83 | +1. Download AnthonyDuguid.pfx And Install At Root Level [](https://github.com/Office-projects/ServerActions/blob/master/VB/AnthonyDuguid.pfx?raw=true "Download AnthonyDuguid.pfx And Install At Root Level For VSTO") |
80 | 84 | 2. Download and run the setup.exe file. |
81 | | -[](https://github.com/aduguid/ServerActions/blob/master/VB/publish/setup.exe?raw=true "Download Setup.exe Install File") |
| 85 | +[](https://github.com/Office-projects/ServerActions/blob/master/VB/publish/setup.exe?raw=true "Download Setup.exe Install File") |
82 | 86 |
|
83 | 87 | <br> |
84 | 88 |
|
@@ -181,11 +185,45 @@ This Excel ribbon is inserted after the “Home” tab when Excel opens. Listed |
181 | 185 |
|
182 | 186 | <a id="user-content-settings" class="anchor" href="#settings" aria-hidden="true"> </a> |
183 | 187 | #### Add-In Settings (Button) |
184 | | -* Opens the settings form |
| 188 | +* Opens the settings form/taskpane |
185 | 189 |
|
186 | | -<h1 align="left"> |
187 | | - <img src="Images/ReadMe/settings2.0.png" alt="settings" /> |
188 | | -</h1> |
| 190 | +<kbd> |
| 191 | +VSTO |
| 192 | +<br> |
| 193 | + <img align="left" src="Images/ReadMe/vsto.ribbon.settings.png" /> |
| 194 | +</kbd> |
| 195 | + |
| 196 | +- Types of VSTO Settings |
| 197 | + - Application Settings |
| 198 | + - These settings can only be changed in the project and need to be redeployed |
| 199 | + - They will appear disabled in the form |
| 200 | + - User Settings |
| 201 | + - These settings can be changed by the end-user |
| 202 | + - They will appear enabled in the form |
| 203 | + |
| 204 | +<kbd> |
| 205 | +VBA |
| 206 | +<br> |
| 207 | + <img align="left" src="Images/ReadMe/vba.ribbon.settings.png" /> |
| 208 | +</kbd> |
| 209 | + |
| 210 | +- VBA Settings |
| 211 | + - To add a new setting |
| 212 | + ```vbnet |
| 213 | + ThisWorkbook.CustomDocumentProperties.Add _ |
| 214 | + Name:="App_ReleaseDate" _ |
| 215 | + , LinkToContent:=False _ |
| 216 | + , Type:=msoPropertyTypeDate _ |
| 217 | + , Value:="31-Jul-2017 1:05pm" |
| 218 | + ``` |
| 219 | + - To update a setting |
| 220 | + ```vbnet |
| 221 | + ThisWorkbook.CustomDocumentProperties.Item("App_ReleaseDate").Value = "31-Jul-2017 1:05pm" |
| 222 | + ``` |
| 223 | + - To delete a setting |
| 224 | + ```vbnet |
| 225 | + ThisWorkbook.CustomDocumentProperties.Item("App_ReleaseDate").Delete |
| 226 | + ``` |
189 | 227 |
|
190 | 228 | <a id="user-content-help" class="anchor" href="#help" aria-hidden="true"> </a> |
191 | 229 | ### Help (Group) |
|
0 commit comments