Skip to content
This repository was archived by the owner on Jan 4, 2025. It is now read-only.

Commit 40e3a4d

Browse files
committed
Fixed markdown typos
1 parent f5ad2a2 commit 40e3a4d

19 files changed

+38
-78
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ After importing this module, you will need to configure both the *base URI* & *A
8181

8282
---
8383

84-
## Help & Usage :blue_book
84+
## Help & Usage :blue_book:
8585

8686
To view documentation for the module as well as any commands you can browse the online Github pages
8787

@@ -100,15 +100,15 @@ Get-Help Get-S1Accounts -Full
100100

101101
---
102102

103-
## Primary ToDo List :dart
103+
## Primary ToDo List :dart:
104104

105105
* [x] Documentation automation
106106
* [ ] Updatable help
107107
* [ ] Validate GET command structure, parameters and usage `(Not all commands are fully validated due to various issues or permissions)`
108108
* [ ] Build a better API parameter to more securely handle API keys
109109
* [ ] Add compatibility with PowerShell Core
110110

111-
## Secondary ToDo List :dart
111+
## Secondary ToDo List :dart:
112112

113113
* [ ] Implement other METHODS `( DELETE, POST, PUT )`
114114
* [ ] Example scripts & reports

SentinelOneAPI/Internal/APIKey.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function Add-S1APIKey {
3131
N\A
3232
3333
.LINK
34-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html
34+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html
3535
3636
#>
3737

@@ -86,7 +86,7 @@ function Get-S1APIKey {
8686
N\A
8787
8888
.LINK
89-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Get-S1APIKey.html
89+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Get-S1APIKey.html
9090
9191
#>
9292

@@ -136,7 +136,7 @@ function Remove-S1APIKey {
136136
N\A
137137
138138
.LINK
139-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1APIKey.html
139+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1APIKey.html
140140
141141
#>
142142

@@ -181,7 +181,7 @@ function Test-S1APIKey {
181181
N\A
182182
183183
.LINK
184-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Test-S1ApiKey.html
184+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Test-S1ApiKey.html
185185
186186
#>
187187

SentinelOneAPI/Internal/BaseURI.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function Add-S1BaseURI {
3030
N\A
3131
3232
.LINK
33-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Add-S1BaseURI.html
33+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Add-S1BaseURI.html
3434
3535
#>
3636

@@ -77,7 +77,7 @@ function Get-S1BaseURI {
7777
N\A
7878
7979
.LINK
80-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Get-S1BaseURI.html
80+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Get-S1BaseURI.html
8181
8282
#>
8383

@@ -109,7 +109,7 @@ function Remove-S1BaseURI {
109109
N\A
110110
111111
.LINK
112-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1BaseURI.html
112+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1BaseURI.html
113113
114114
#>
115115

SentinelOneAPI/Internal/ModuleSettings.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function Export-S1ModuleSettings {
4040
N\A
4141
4242
.LINK
43-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Export-S1ModuleSettings.html
43+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Export-S1ModuleSettings.html
4444
4545
#>
4646

@@ -117,7 +117,7 @@ function Import-S1ModuleSettings {
117117
N\A
118118
119119
.LINK
120-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Import-S1ModuleSettings.html
120+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Import-S1ModuleSettings.html
121121
122122
#>
123123

@@ -203,7 +203,7 @@ function Remove-S1ModuleSettings {
203203
N\A
204204
205205
.LINK
206-
https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1ModuleSettings.html
206+
https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1ModuleSettings.html
207207
208208
#>
209209

Update-HelpContent.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Try{
172172

173173
if (Get-InstalledModule -Name $moduleName -ErrorAction SilentlyContinue -Verbose:$false){
174174
$Commands = Get-Command -Module $moduleName -ErrorAction Stop | Sort-Object Name
175-
#Import-Module -Name $moduleName -Force -Verbose:$false
175+
Import-Module -Name $moduleName -Force -Verbose:$false
176176
}
177177
else{
178178
throw "The $moduleName module was not found"

docs/en-US/SentinelOneAPI-help.xml

Lines changed: 11 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -37561,13 +37561,9 @@
3756137561
</command:examples>
3756237562
<command:relatedLinks>
3756337563
<maml:navigationLink>
37564-
<maml:linkText>Online Version:</maml:linkText>
37564+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html</maml:linkText>
3756537565
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html</maml:uri>
3756637566
</maml:navigationLink>
37567-
<maml:navigationLink>
37568-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html</maml:linkText>
37569-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html</maml:uri>
37570-
</maml:navigationLink>
3757137567
</command:relatedLinks>
3757237568
</command:command>
3757337569
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -37666,13 +37662,9 @@
3766637662
</command:examples>
3766737663
<command:relatedLinks>
3766837664
<maml:navigationLink>
37669-
<maml:linkText>Online Version:</maml:linkText>
37665+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Add-S1BaseURI.html</maml:linkText>
3767037666
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Add-S1BaseURI.html</maml:uri>
3767137667
</maml:navigationLink>
37672-
<maml:navigationLink>
37673-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Add-S1BaseURI.html</maml:linkText>
37674-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Add-S1BaseURI.html</maml:uri>
37675-
</maml:navigationLink>
3767637668
</command:relatedLinks>
3767737669
</command:command>
3767837670
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -37772,13 +37764,9 @@
3777237764
</command:examples>
3777337765
<command:relatedLinks>
3777437766
<maml:navigationLink>
37775-
<maml:linkText>Online Version:</maml:linkText>
37767+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Export-S1ModuleSettings.html</maml:linkText>
3777637768
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Export-S1ModuleSettings.html</maml:uri>
3777737769
</maml:navigationLink>
37778-
<maml:navigationLink>
37779-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Export-S1ModuleSettings.html</maml:linkText>
37780-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Export-S1ModuleSettings.html</maml:uri>
37781-
</maml:navigationLink>
3778237770
</command:relatedLinks>
3778337771
</command:command>
3778437772
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -37848,13 +37836,9 @@
3784837836
</command:examples>
3784937837
<command:relatedLinks>
3785037838
<maml:navigationLink>
37851-
<maml:linkText>Online Version:</maml:linkText>
37839+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Get-S1APIKey.html</maml:linkText>
3785237840
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Get-S1APIKey.html</maml:uri>
3785337841
</maml:navigationLink>
37854-
<maml:navigationLink>
37855-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Get-S1APIKey.html</maml:linkText>
37856-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Get-S1APIKey.html</maml:uri>
37857-
</maml:navigationLink>
3785837842
</command:relatedLinks>
3785937843
</command:command>
3786037844
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -37893,13 +37877,9 @@
3789337877
</command:examples>
3789437878
<command:relatedLinks>
3789537879
<maml:navigationLink>
37896-
<maml:linkText>Online Version:</maml:linkText>
37880+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Get-S1BaseURI.html</maml:linkText>
3789737881
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Get-S1BaseURI.html</maml:uri>
3789837882
</maml:navigationLink>
37899-
<maml:navigationLink>
37900-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Get-S1BaseURI.html</maml:linkText>
37901-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Get-S1BaseURI.html</maml:uri>
37902-
</maml:navigationLink>
3790337883
</command:relatedLinks>
3790437884
</command:command>
3790537885
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -38001,13 +37981,9 @@
3800137981
</command:examples>
3800237982
<command:relatedLinks>
3800337983
<maml:navigationLink>
38004-
<maml:linkText>Online Version:</maml:linkText>
37984+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Import-S1ModuleSettings.html</maml:linkText>
3800537985
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Import-S1ModuleSettings.html</maml:uri>
3800637986
</maml:navigationLink>
38007-
<maml:navigationLink>
38008-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Import-S1ModuleSettings.html</maml:linkText>
38009-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Import-S1ModuleSettings.html</maml:uri>
38010-
</maml:navigationLink>
3801137987
</command:relatedLinks>
3801237988
</command:command>
3801337989
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -38093,13 +38069,9 @@
3809338069
</command:examples>
3809438070
<command:relatedLinks>
3809538071
<maml:navigationLink>
38096-
<maml:linkText>Online Version:</maml:linkText>
38072+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1APIKey.html</maml:linkText>
3809738073
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1APIKey.html</maml:uri>
3809838074
</maml:navigationLink>
38099-
<maml:navigationLink>
38100-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1APIKey.html</maml:linkText>
38101-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1APIKey.html</maml:uri>
38102-
</maml:navigationLink>
3810338075
</command:relatedLinks>
3810438076
</command:command>
3810538077
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -38185,13 +38157,9 @@
3818538157
</command:examples>
3818638158
<command:relatedLinks>
3818738159
<maml:navigationLink>
38188-
<maml:linkText>Online Version:</maml:linkText>
38160+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1BaseURI.html</maml:linkText>
3818938161
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1BaseURI.html</maml:uri>
3819038162
</maml:navigationLink>
38191-
<maml:navigationLink>
38192-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1BaseURI.html</maml:linkText>
38193-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1BaseURI.html</maml:uri>
38194-
</maml:navigationLink>
3819538163
</command:relatedLinks>
3819638164
</command:command>
3819738165
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -38338,13 +38306,9 @@
3833838306
</command:examples>
3833938307
<command:relatedLinks>
3834038308
<maml:navigationLink>
38341-
<maml:linkText>Online Version:</maml:linkText>
38309+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1ModuleSettings.html</maml:linkText>
3834238310
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1ModuleSettings.html</maml:uri>
3834338311
</maml:navigationLink>
38344-
<maml:navigationLink>
38345-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1ModuleSettings.html</maml:linkText>
38346-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Remove-S1ModuleSettings.html</maml:uri>
38347-
</maml:navigationLink>
3834838312
</command:relatedLinks>
3834938313
</command:command>
3835038314
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
@@ -38418,12 +38382,8 @@
3841838382
</command:examples>
3841938383
<command:relatedLinks>
3842038384
<maml:navigationLink>
38421-
<maml:linkText>Online Version:</maml:linkText>
38422-
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Test-S1APIKey.html</maml:uri>
38423-
</maml:navigationLink>
38424-
<maml:navigationLink>
38425-
<maml:linkText>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Test-S1ApiKey.html</maml:linkText>
38426-
<maml:uri>https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Test-S1ApiKey.html</maml:uri>
38385+
<maml:linkText>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Test-S1ApiKey.html</maml:linkText>
38386+
<maml:uri>https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Test-S1ApiKey.html</maml:uri>
3842738387
</maml:navigationLink>
3842838388
</command:relatedLinks>
3842938389
</command:command>

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ After importing this module, you will need to configure both the *base URI* & *A
9292

9393
---
9494

95-
## Help & Usage :blue_book
95+
## Help & Usage :blue_book:
9696

9797
To view documentation for the module as well as any commands you can browse the online Github pages
9898

@@ -111,15 +111,15 @@ Get-Help Get-S1Accounts -Full
111111

112112
---
113113

114-
## Primary ToDo List :dart
114+
## Primary ToDo List :dart:
115115

116116
* [x] Documentation automation
117117
* [ ] Updatable help
118118
* [ ] Validate GET command structure, parameters and usage `(Not all commands are fully validated due to various issues or permissions)`
119119
* [ ] Build a better API parameter to more securely handle API keys
120120
* [ ] Add compatibility with PowerShell Core
121121

122-
## Secondary ToDo List :dart
122+
## Secondary ToDo List :dart:
123123

124124
* [ ] Implement other METHODS `( DELETE, POST, PUT )`
125125
* [ ] Example scripts & reports

docs/site/Internal/Add-S1APIKey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ N\A
7777
7878
## RELATED LINKS
7979
80-
[https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html](https://github.com/Celerium/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html)
80+
[https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html](https://celerium.github.io/SentinelOne-PowerShellWrapper/site/Internal/Add-S1APIKey.html)
8181

0 commit comments

Comments
 (0)