Skip to content

Commit 58a2ba7

Browse files
authored
Merge pull request PowerShell#2046 from xiaoyinl/use-https-links
Use HTTPS links for go.microsoft.com
2 parents fe1f035 + f538eeb commit 58a2ba7

288 files changed

Lines changed: 457 additions & 457 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

license_thirdparty_proprietary.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ included for your information only.
436436
2. DATA. The software may collect information about you and your use of the software, and send that
437437
to Microsoft. Microsoft may use this information to improve our products and services. You can learn
438438
more about data collection and use in the help documentation and the privacy statement
439-
at http://go.microsoft.com/fwlink/?LinkId=528096 . Your use of the software operates as your
439+
at https://go.microsoft.com/fwlink/?LinkId=528096 . Your use of the software operates as your
440440
consent to these practices.
441441
3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.
442442
a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable

src/Microsoft.Management.Infrastructure.CimCmdlets/GetCimAssociatedInstanceCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace Microsoft.Management.Infrastructure.CimCmdlets
2828
[Cmdlet(VerbsCommon.Get,
2929
GetCimAssociatedInstanceCommand.Noun,
3030
DefaultParameterSetName = CimBaseCommand.ComputerSetName,
31-
HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227958")]
31+
HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227958")]
3232
[OutputType(typeof(CimInstance))]
3333
public class GetCimAssociatedInstanceCommand : CimBaseCommand
3434
{

src/Microsoft.Management.Infrastructure.CimCmdlets/GetCimClassCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace Microsoft.Management.Infrastructure.CimCmdlets
2525
/// Should the class remember what Session it came from? No.
2626
/// </para>
2727
/// </summary>
28-
[Cmdlet(VerbsCommon.Get, GetCimClassCommand.Noun, DefaultParameterSetName = ComputerSetName, HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227959")]
28+
[Cmdlet(VerbsCommon.Get, GetCimClassCommand.Noun, DefaultParameterSetName = ComputerSetName, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227959")]
2929
[OutputType(typeof(CimClass))]
3030
public class GetCimClassCommand : CimBaseCommand
3131
{

src/Microsoft.Management.Infrastructure.CimCmdlets/GetCimInstanceCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Management.Infrastructure.CimCmdlets
2121
/// specified in the Property parameter, KeysOnly parameter or the Select clause
2222
/// of the Query parameter.
2323
/// </summary>
24-
[Cmdlet(VerbsCommon.Get, "CimInstance", DefaultParameterSetName = CimBaseCommand.ClassNameComputerSet, HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227961")]
24+
[Cmdlet(VerbsCommon.Get, "CimInstance", DefaultParameterSetName = CimBaseCommand.ClassNameComputerSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227961")]
2525
[OutputType(typeof(CimInstance))]
2626
public class GetCimInstanceCommand : CimBaseCommand
2727
{

src/Microsoft.Management.Infrastructure.CimCmdlets/GetCimSessionCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Microsoft.Management.Infrastructure.CimCmdlets
1818
/// connections with remote computers established from the current PS Session.
1919
/// </summary>
2020

21-
[Cmdlet(VerbsCommon.Get, "CimSession", DefaultParameterSetName = ComputerNameSet, HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227966")]
21+
[Cmdlet(VerbsCommon.Get, "CimSession", DefaultParameterSetName = ComputerNameSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227966")]
2222
[OutputType(typeof(CimSession))]
2323
public sealed class GetCimSessionCommand : CimBaseCommand
2424
{

src/Microsoft.Management.Infrastructure.CimCmdlets/InvokeCimMethodCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace Microsoft.Management.Infrastructure.CimCmdlets
2424
"CimMethod",
2525
SupportsShouldProcess = true,
2626
DefaultParameterSetName = CimBaseCommand.ClassNameComputerSet,
27-
HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227965")]
27+
HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227965")]
2828
public class InvokeCimMethodCommand : CimBaseCommand
2929
{
3030
#region constructor

src/Microsoft.Management.Infrastructure.CimCmdlets/NewCimInstanceCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace Microsoft.Management.Infrastructure.CimCmdlets
2424
/// on the server, otherwise just create client in-memory instance
2525
/// </para>
2626
/// </summary>
27-
[Cmdlet(VerbsCommon.New, "CimInstance", DefaultParameterSetName = CimBaseCommand.ClassNameComputerSet, SupportsShouldProcess = true, HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227963")]
27+
[Cmdlet(VerbsCommon.New, "CimInstance", DefaultParameterSetName = CimBaseCommand.ClassNameComputerSet, SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227963")]
2828
[OutputType(typeof(CimInstance))]
2929
public class NewCimInstanceCommand : CimBaseCommand
3030
{

src/Microsoft.Management.Infrastructure.CimCmdlets/NewCimSessionCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Management.Infrastructure.CimCmdlets
2121
/// The CimSession object returned by the Cmdlet is used by all other CIM
2222
/// cmdlets.
2323
/// </summary>
24-
[Cmdlet(VerbsCommon.New, "CimSession", DefaultParameterSetName = CredentialParameterSet, HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227967")]
24+
[Cmdlet(VerbsCommon.New, "CimSession", DefaultParameterSetName = CredentialParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227967")]
2525
[OutputType(typeof(CimSession))]
2626
public sealed class NewCimSessionCommand : CimBaseCommand
2727
{

src/Microsoft.Management.Infrastructure.CimCmdlets/NewCimSessionOptionCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public enum ProtocolType
3838
/// DComSessionOptions or WSManSessionOptions, which derive from
3939
/// CimSessionOptions.
4040
/// </summary>
41-
[Cmdlet(VerbsCommon.New, "CimSessionOption", DefaultParameterSetName = ProtocolNameParameterSet, HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227969")]
41+
[Cmdlet(VerbsCommon.New, "CimSessionOption", DefaultParameterSetName = ProtocolNameParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227969")]
4242
[OutputType(typeof(CimSessionOptions))]
4343
public sealed class NewCimSessionOptionCommand : CimBaseCommand
4444
{

src/Microsoft.Management.Infrastructure.CimCmdlets/RegisterCimIndicationCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Management.Infrastructure.CimCmdlets
2222
/// cancel the subscription
2323
/// Should we have the second parameter set with a -Query?
2424
/// </summary>
25-
[Cmdlet(VerbsLifecycle.Register, "CimIndicationEvent", DefaultParameterSetName = CimBaseCommand.ClassNameComputerSet, HelpUri = "http://go.microsoft.com/fwlink/?LinkId=227960")]
25+
[Cmdlet(VerbsLifecycle.Register, "CimIndicationEvent", DefaultParameterSetName = CimBaseCommand.ClassNameComputerSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=227960")]
2626
public class RegisterCimIndicationCommand : ObjectEventRegistrationBase
2727
{
2828
#region parameters

0 commit comments

Comments
 (0)