Skip to content

Commit 99bb8b2

Browse files
committed
Update URL
1 parent bb6a0a3 commit 99bb8b2

File tree

37 files changed

+37
-37
lines changed

37 files changed

+37
-37
lines changed

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/ConnectLocalWMINamespace.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Function ConnectLocalWMINamespace(ByRef objSWbemServicesWMINamespace, ByVal strT
9090

9191
'region DownloadLocationNotice ####################################################
9292
' The most up-to-date version of this script can be found on the author's GitHub repository
93-
' at https://github.com/franklesniak/VBScript_Resources
93+
' at https://github.com/franklesniak/sysadmin-accelerator
9494
'endregion DownloadLocationNotice ####################################################
9595

9696
'region DependsOn ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/ConvertPortableExecutableMachineTypeToProcessorArchitecture.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Function ConvertPortableExecutableMachineTypeToProcessorArchitecture(ByRef strPr
7272

7373
'region DownloadLocationNotice ####################################################
7474
' The most up-to-date version of this script can be found on the author's GitHub repository
75-
' at https://github.com/franklesniak/VBScript_Resources
75+
' at https://github.com/franklesniak/sysadmin-accelerator
7676
'endregion DownloadLocationNotice ####################################################
7777

7878
'region Acknowledgements ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/ConvertStringVersionNumberToMajorMinorBuildRevisionIntegers.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Function ConvertStringVersionNumberToMajorMinorBuildRevisionIntegers(ByRef lngMa
5555

5656
'region DownloadLocationNotice ####################################################
5757
' The most up-to-date version of this script can be found on the author's GitHub repository
58-
' at https://github.com/franklesniak/VBScript_Resources
58+
' at https://github.com/franklesniak/sysadmin-accelerator
5959
'endregion DownloadLocationNotice ####################################################
6060

6161
'region DependsOn ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/ConvertWindowsRegistryHiveAndPathToSeparateRegistryHiveAndPath.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Function ConvertWindowsRegistryHiveAndPathToSeparateRegistryHiveAndPath(ByRef st
8484

8585
'region DownloadLocationNotice ####################################################
8686
' The most up-to-date version of this script can be found on the author's GitHub repository
87-
' at https://github.com/franklesniak/VBScript_Resources
87+
' at https://github.com/franklesniak/sysadmin-accelerator
8888
'endregion DownloadLocationNotice ####################################################
8989

9090
'region Acknowledgements ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/ConvertWindowsRegistryHiveStringToWinRegDotHIntegerValue.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Function ConvertWindowsRegistryHiveStringToWinRegDotHIntegerValue(ByRef lngRegis
9393

9494
'region DownloadLocationNotice ####################################################
9595
' The most up-to-date version of this script can be found on the author's GitHub repository
96-
' at https://github.com/franklesniak/VBScript_Resources
96+
' at https://github.com/franklesniak/sysadmin-accelerator
9797
'endregion DownloadLocationNotice ####################################################
9898

9999
'region Acknowledgements ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/GetCommandPromptPath.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Function GetCommandPromptPath(ByRef strCommandPromptPath)
4141

4242
'region DownloadLocationNotice ####################################################
4343
' The most up-to-date version of this script can be found on the author's GitHub repository
44-
' at https://github.com/franklesniak/VBScript_Resources
44+
' at https://github.com/franklesniak/sysadmin-accelerator
4545
'endregion DownloadLocationNotice ####################################################
4646

4747
'region Acknowledgements ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/GetExecutableProcessorArchitectureFromFile.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Function GetExecutableProcessorArchitectureFromFile(ByRef strProcessorArchitectu
6969

7070
'region DownloadLocationNotice ####################################################
7171
' The most up-to-date version of this script can be found on the author's GitHub repository
72-
' at https://github.com/franklesniak/VBScript_Resources
72+
' at https://github.com/franklesniak/sysadmin-accelerator
7373
'endregion DownloadLocationNotice ####################################################
7474

7575
'region Acknowledgements ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/GetFileProductVersionAsString.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Function GetFileProductVersionAsString(ByRef strFileProductVersion, ByVal strFil
5050

5151
'region DownloadLocationNotice ####################################################
5252
' The most up-to-date version of this script can be found on the author's GitHub repository
53-
' at https://github.com/franklesniak/VBScript_Resources
53+
' at https://github.com/franklesniak/sysadmin-accelerator
5454
'endregion DownloadLocationNotice ####################################################
5555

5656
'region Acknowledgements ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/GetFileVersionAsString.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Function GetFileVersionAsString(ByRef strFileVersion, ByVal strFilePath)
4949

5050
'region DownloadLocationNotice ####################################################
5151
' The most up-to-date version of this script can be found on the author's GitHub repository
52-
' at https://github.com/franklesniak/VBScript_Resources
52+
' at https://github.com/franklesniak/sysadmin-accelerator
5353
'endregion DownloadLocationNotice ####################################################
5454

5555
'region Acknowledgements ####################################################

VBScript/02_Upfront_Encapsulated_Code_With_No_Dependencies/GetOperatingSystemProcessorArchitecture.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Function GetOperatingSystemProcessorArchitecture(ByRef strOperatingSystemProcess
6464

6565
'region DownloadLocationNotice ####################################################
6666
' The most up-to-date version of this script can be found on the author's GitHub repository
67-
' at https://github.com/franklesniak/VBScript_Resources
67+
' at https://github.com/franklesniak/sysadmin-accelerator
6868
'endregion DownloadLocationNotice ####################################################
6969

7070
'region Acknowledgements ####################################################

0 commit comments

Comments
 (0)