Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/PowerShell/PowerShell.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorSteve Lee <slee@microsoft.com>2020-03-24 21:08:37 +0300
committerGitHub <noreply@github.com>2020-03-24 21:08:37 +0300
commitb7cb335f03fe2992d0cbd61699de9d9aafa1d7c1 (patch)
tree4abfc266cf2340419452ee45c1db3d9b749db25e /demos
parentf8fb77052fd2a89b6ad018f50c5a89c4c3e33e62 (diff)
Update copyright notice to latest guidance (#12190)
Diffstat (limited to 'demos')
-rw-r--r--demos/Apache/Apache/Apache.psm12
-rw-r--r--demos/Apache/apache-demo.ps12
-rw-r--r--demos/Azure/Azure-Demo.ps12
-rw-r--r--demos/DSC/dsc-demo.ps12
-rw-r--r--demos/Docker-PowerShell/Docker-PowerShell.ps12
-rw-r--r--demos/SystemD/SystemD/SystemD.psm12
-rw-r--r--demos/SystemD/journalctl-demo.ps12
-rwxr-xr-xdemos/crontab/CronTab/CronTab.psd12
-rw-r--r--demos/crontab/CronTab/CronTab.psm12
-rw-r--r--demos/crontab/crontab.ps12
-rw-r--r--demos/dsc.ps12
-rw-r--r--demos/powershellget/PowerShellGet.ps12
-rw-r--r--demos/python/class1.ps12
-rw-r--r--demos/python/demo_script.ps12
-rw-r--r--demos/python/inline_python.ps12
-rw-r--r--demos/rest/rest.ps12
16 files changed, 16 insertions, 16 deletions
diff --git a/demos/Apache/Apache/Apache.psm1 b/demos/Apache/Apache/Apache.psm1
index 489502a6d3..5f980f26ba 100644
--- a/demos/Apache/Apache/Apache.psm1
+++ b/demos/Apache/Apache/Apache.psm1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#Region utility functions
diff --git a/demos/Apache/apache-demo.ps1 b/demos/Apache/apache-demo.ps1
index 1f5d60587d..1168bc7a39 100644
--- a/demos/Apache/apache-demo.ps1
+++ b/demos/Apache/apache-demo.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Import-Module $PSScriptRoot/Apache/Apache.psm1
diff --git a/demos/Azure/Azure-Demo.ps1 b/demos/Azure/Azure-Demo.ps1
index f75aa3e2d0..22b316686a 100644
--- a/demos/Azure/Azure-Demo.ps1
+++ b/demos/Azure/Azure-Demo.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
### The techniques used in this demo are documented at
diff --git a/demos/DSC/dsc-demo.ps1 b/demos/DSC/dsc-demo.ps1
index f393916408..3abd642a3b 100644
--- a/demos/DSC/dsc-demo.ps1
+++ b/demos/DSC/dsc-demo.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#Get Distro type and set distro-specific variables
diff --git a/demos/Docker-PowerShell/Docker-PowerShell.ps1 b/demos/Docker-PowerShell/Docker-PowerShell.ps1
index 4639f7ee1d..51b07f2d34 100644
--- a/demos/Docker-PowerShell/Docker-PowerShell.ps1
+++ b/demos/Docker-PowerShell/Docker-PowerShell.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# This is a short example of the Docker-PowerShell module. The same cmdlets may be used to manage both local & remote machines, including both Windows & Linux hosts
diff --git a/demos/SystemD/SystemD/SystemD.psm1 b/demos/SystemD/SystemD/SystemD.psm1
index b127a2e516..770451bdd0 100644
--- a/demos/SystemD/SystemD/SystemD.psm1
+++ b/demos/SystemD/SystemD/SystemD.psm1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Function Get-SystemDJournal {
diff --git a/demos/SystemD/journalctl-demo.ps1 b/demos/SystemD/journalctl-demo.ps1
index c979a97467..1fe7198e4b 100644
--- a/demos/SystemD/journalctl-demo.ps1
+++ b/demos/SystemD/journalctl-demo.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Import-Module $PSScriptRoot/SystemD/SystemD.psm1
diff --git a/demos/crontab/CronTab/CronTab.psd1 b/demos/crontab/CronTab/CronTab.psd1
index df7d814942..aabc48e572 100755
--- a/demos/crontab/CronTab/CronTab.psd1
+++ b/demos/crontab/CronTab/CronTab.psd1
@@ -19,7 +19,7 @@ Author = 'PowerShell'
CompanyName = 'Microsoft Corporation'
# Copyright statement for this module
-Copyright = 'Copyright (c) Microsoft Corporation. All rights reserved.'
+Copyright = 'Copyright (c) Microsoft Corporation.'
# Description of the functionality provided by this module
Description = 'Sample module for managing CronTab'
diff --git a/demos/crontab/CronTab/CronTab.psm1 b/demos/crontab/CronTab/CronTab.psm1
index 1b5bcfb2b7..d354419c9b 100644
--- a/demos/crontab/CronTab/CronTab.psm1
+++ b/demos/crontab/CronTab/CronTab.psm1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
using namespace System.Collections.Generic
diff --git a/demos/crontab/crontab.ps1 b/demos/crontab/crontab.ps1
index 72cc084d41..3d0ee0741e 100644
--- a/demos/crontab/crontab.ps1
+++ b/demos/crontab/crontab.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Import-Module $PSScriptRoot/CronTab/CronTab.psd1
diff --git a/demos/dsc.ps1 b/demos/dsc.ps1
index 8f93dd507c..c59be643ed 100644
--- a/demos/dsc.ps1
+++ b/demos/dsc.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# DSC MOF Compilation
diff --git a/demos/powershellget/PowerShellGet.ps1 b/demos/powershellget/PowerShellGet.ps1
index 0dc33f85c4..e93216851d 100644
--- a/demos/powershellget/PowerShellGet.ps1
+++ b/demos/powershellget/PowerShellGet.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#region find, install, update, uninstall the PowerShell scripts from an online repository.
diff --git a/demos/python/class1.ps1 b/demos/python/class1.ps1
index 291677fd94..d79e6c7ff2 100644
--- a/demos/python/class1.ps1
+++ b/demos/python/class1.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
diff --git a/demos/python/demo_script.ps1 b/demos/python/demo_script.ps1
index 586e14a208..dfa5bb5f6b 100644
--- a/demos/python/demo_script.ps1
+++ b/demos/python/demo_script.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
diff --git a/demos/python/inline_python.ps1 b/demos/python/inline_python.ps1
index fdad32a860..71b65215f7 100644
--- a/demos/python/inline_python.ps1
+++ b/demos/python/inline_python.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
diff --git a/demos/rest/rest.ps1 b/demos/rest/rest.ps1
index 3f2364f950..f40b49b653 100644
--- a/demos/rest/rest.ps1
+++ b/demos/rest/rest.ps1
@@ -1,4 +1,4 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
+# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#-----------------