From 1053bcfa787b75b9905ea5a522f4fc17dee25718 Mon Sep 17 00:00:00 2001 From: Hao Chen Date: Tue, 24 Nov 2015 13:13:31 -0800 Subject: [PATCH] Deleted PowerShellGet msi --- build.proj | 20 - setup-powershellget/Setup/CustomAction.config | 32 -- setup-powershellget/Setup/CustomAction.cs | 110 ----- .../Setup/Properties/AssemblyInfo.cs | 48 -- setup-powershellget/Setup/Setup.csproj | 50 -- setup-powershellget/Setup/ShellLink.cs | 455 ------------------ setup-powershellget/Setup/ShortcutStartup.ps1 | 109 ----- setup-powershellget/azurecmd.wxs | 115 ----- setup-powershellget/bin/iisnode.dll | Bin 132176 -> 0 bytes setup-powershellget/bin/iisnode_schema.xml | 58 --- setup-powershellget/media/GettingStarted.url | 5 - setup-powershellget/media/License.rtf | 213 -------- setup-powershellget/media/WAIcon.ico | Bin 1150 -> 0 bytes setup-powershellget/media/bannrbmp.bmp | Bin 85896 -> 0 bytes setup-powershellget/media/dlgbmp.bmp | Bin 460568 -> 0 bytes setup-powershellget/powershellget.sln | 30 -- setup-powershellget/powershellget.wixproj | 67 --- tools/BuildInstaller.ps1 | 1 - 18 files changed, 1313 deletions(-) delete mode 100644 setup-powershellget/Setup/CustomAction.config delete mode 100644 setup-powershellget/Setup/CustomAction.cs delete mode 100644 setup-powershellget/Setup/Properties/AssemblyInfo.cs delete mode 100644 setup-powershellget/Setup/Setup.csproj delete mode 100644 setup-powershellget/Setup/ShellLink.cs delete mode 100644 setup-powershellget/Setup/ShortcutStartup.ps1 delete mode 100644 setup-powershellget/azurecmd.wxs delete mode 100644 setup-powershellget/bin/iisnode.dll delete mode 100644 setup-powershellget/bin/iisnode_schema.xml delete mode 100644 setup-powershellget/media/GettingStarted.url delete mode 100644 setup-powershellget/media/License.rtf delete mode 100644 setup-powershellget/media/WAIcon.ico delete mode 100644 setup-powershellget/media/bannrbmp.bmp delete mode 100644 setup-powershellget/media/dlgbmp.bmp delete mode 100644 setup-powershellget/powershellget.sln delete mode 100644 setup-powershellget/powershellget.wixproj diff --git a/build.proj b/build.proj index 6dd3d0737bf8..3cb50135d214 100644 --- a/build.proj +++ b/build.proj @@ -51,7 +51,6 @@ - @@ -161,14 +153,6 @@ - - - - - - - - - - - - - - - - - - diff --git a/setup-powershellget/Setup/CustomAction.cs b/setup-powershellget/Setup/CustomAction.cs deleted file mode 100644 index 916f0a70211e..000000000000 --- a/setup-powershellget/Setup/CustomAction.cs +++ /dev/null @@ -1,110 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -namespace Microsoft.WindowsAzure.Setup -{ - using System; - using System.IO; - using Deployment.WindowsInstaller; - using System.Threading; - - public class CustomAction - { - // The exception object which will store (if) exception which is occured in our sta thread - private static Exception _STAThreadException; - - private static uint[] powerShellDefaultColorTable = new uint[] - { - 0x0, 0x800000, 0x8000, 0x808000, 0x80, 0x562401, 0xF0EDEE, 0xC0C0C0, - 0x808080, 0xFF0000, 0xFF00, 0xFFFF00, 0xFF, 0xFF00FF, 0xFFFF, 0xFFFFFF - }; - - // Method which contains our custom action behaviour - private static void RunSTAThread(object sessionObject) - { - try - { - Session session = sessionObject as Session; - - string powerShellShortcutPath = session.CustomActionData["ShortcutPath"]; - string powerShellDefaultShortcutPath = session.CustomActionData["DefaultShortcutPath"]; - - if (!File.Exists(powerShellShortcutPath)) - { - _STAThreadException = new Exception(string.Format("UpdatePSShortcut: file {0} does not exist", powerShellShortcutPath)); - return; - } - - ShellLink powerShellShellLink = new ShellLink(powerShellShortcutPath); - if (File.Exists(powerShellDefaultShortcutPath)) - { - session.Log("UpdatePSShortcut: found default Windows PowerShell shortcut at {0}", powerShellDefaultShortcutPath); - ShellLink powerShellDefaultShellLink = new ShellLink(powerShellDefaultShortcutPath); - powerShellShellLink.ConsoleProperties = powerShellDefaultShellLink.ConsoleProperties; - } - else - { - session.Log("UpdatePSShortcut: default Windows PowerShell shortcut does not exist at {0}", powerShellDefaultShortcutPath); - - for (int i = 0; i < powerShellShellLink.ConsoleProperties.ColorTable.Length; i++) - { - powerShellShellLink.ConsoleProperties.ColorTable[i] = powerShellDefaultColorTable[i]; - } - powerShellShellLink.AutoPosition = true; - powerShellShellLink.CommandHistoryBufferSize = 50; - powerShellShellLink.CommandHistoryBufferCount = 4; - - powerShellShellLink.InsertMode = true; - - powerShellShellLink.PopUpBackgroundColor = 15; - powerShellShellLink.PopUpTextColor = 3; - - powerShellShellLink.QuickEditMode = true; - - powerShellShellLink.ScreenBackgroundColor = 5; - powerShellShellLink.ScreenTextColor = 6; - - powerShellShellLink.SetScreenBufferSize(120, 3000); - powerShellShellLink.SetWindowSize(120, 50); - } - powerShellShellLink.SetFont(); - powerShellShellLink.Save(); - session.Log("UpdatePSShortcut: success"); - } - catch (Exception ex) - { - _STAThreadException = new Exception(string.Format("UpdatePSShortcut: failed with exception {0}", ex.Message)); - } - } - - [CustomAction] - public static ActionResult UpdatePSShortcut(Session session) - { - Thread staThread = new Thread(RunSTAThread); - staThread.SetApartmentState(ApartmentState.STA); - staThread.Start(session); - // Wait for the new thread to finish its operations - staThread.Join(); - - // If there is any exception in the new thread pass it to the installer - if (_STAThreadException != null) - { - session.Log(_STAThreadException.Message); - return ActionResult.Failure; - } - - return ActionResult.Success; - } - } -} \ No newline at end of file diff --git a/setup-powershellget/Setup/Properties/AssemblyInfo.cs b/setup-powershellget/Setup/Properties/AssemblyInfo.cs deleted file mode 100644 index 6d3ae6c5b4e0..000000000000 --- a/setup-powershellget/Setup/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,48 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Setup")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyCompany("Microsoft")] -[assembly: AssemblyProduct("Setup")] -[assembly: AssemblyCopyright("Copyright © Microsoft")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("f4aa30f2-d2ce-4aef-88ed-a048b771c272")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/setup-powershellget/Setup/Setup.csproj b/setup-powershellget/Setup/Setup.csproj deleted file mode 100644 index 6a7a64f7c639..000000000000 --- a/setup-powershellget/Setup/Setup.csproj +++ /dev/null @@ -1,50 +0,0 @@ - - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {EA5BD11B-10B3-433D-A250-92AE76669D8D} - Library - Properties - Microsoft.WindowsAzure.Setup - Microsoft.WindowsAzure.Setup - v4.5 - 512 - $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.CA.targets - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - diff --git a/setup-powershellget/Setup/ShellLink.cs b/setup-powershellget/Setup/ShellLink.cs deleted file mode 100644 index 80144cca986d..000000000000 --- a/setup-powershellget/Setup/ShellLink.cs +++ /dev/null @@ -1,455 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// Copyright Microsoft Corporation -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// http://www.apache.org/licenses/LICENSE-2.0 -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// ---------------------------------------------------------------------------------- - -namespace Microsoft.WindowsAzure.Setup -{ - using System; - using System.Diagnostics.CodeAnalysis; - using System.IO; - using System.Runtime.InteropServices; - using System.Text; - - // IShellLink.ShowCmd fFlags - [Flags] - public enum ShowCmd - { - SW_SHOWNORMAL = 1, - SW_SHOWMAXIMIZED = 3, - SW_SHOWMINNOACTIVE = 7 - } - - // IShellLink.Resolve fFlags - [Flags] - public enum SLR_FLAGS - { - SLR_NO_UI = 0x1, - SLR_ANY_MATCH = 0x2, - SLR_UPDATE = 0x4, - SLR_NOUPDATE = 0x8, - SLR_NOSEARCH = 0x10, - SLR_NOTRACK = 0x20, - SLR_NOLINKINFO = 0x40, - SLR_INVOKE_MSI = 0x80 - } - - // IShellLink.GetPath fFlags - [Flags] - public enum SLGP_FLAGS - { - SLGP_SHORTPATH = 0x1, - SLGP_UNCPRIORITY = 0x2, - SLGP_RAWPATH = 0x4 - } - - [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1305:FieldNamesMustNotUseHungarianNotation", Justification = "Matching COM Names")] - [ComImport, - InterfaceType(ComInterfaceType.InterfaceIsIUnknown), - Guid("000214F9-0000-0000-C000-000000000046")] - public interface IShellLinkW - { - void GetPath( - [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszFile, - int cchMaxPath, - out WIN32_FIND_DATAW pfd, - SLGP_FLAGS fFlags); - - void GetIDList( - out IntPtr ppidl); - - void SetIDList( - IntPtr pidl); - - void GetDescription( - [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszName, - int cchMaxName); - - void SetDescription( - [MarshalAs(UnmanagedType.LPWStr)] string pszName); - - void GetWorkingDirectory( - [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszDir, - int cchMaxPath); - - void SetWorkingDirectory( - [MarshalAs(UnmanagedType.LPWStr)] string pszDir); - - void GetArguments( - [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszArgs, - int cchMaxPath); - - void SetArguments( - [MarshalAs(UnmanagedType.LPWStr)] string pszArgs); - - void GetHotkey( - out short pwHotkey); - - void SetHotkey( - short wHotkey); - - void GetShowCmd( - out int piShowCmd); - - void SetShowCmd( - int iShowCmd); - - void GetIconLocation( - [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszIconPath, - int cchIconPath, - out int piIcon); - - void SetIconLocation( - [MarshalAs(UnmanagedType.LPWStr)] string pszIconPath, - int iIcon); - - void SetRelativePath( - [MarshalAs(UnmanagedType.LPWStr)] string pszPathRel, - int dwReserved); - - void Resolve( - IntPtr hwnd, - SLR_FLAGS fFlags); - - void SetPath( - [MarshalAs(UnmanagedType.LPWStr)] string pszFile); - } - - [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1305:FieldNamesMustNotUseHungarianNotation", Justification = "Matching COM Names")] - [ComImport, - InterfaceType(ComInterfaceType.InterfaceIsIUnknown), - Guid("45E2b4AE-B1C3-11D0-B92F-00A0C90312E1")] - public interface IShellLinkDataList - { - void AddDataBlock( - IntPtr pDataBlock); - - void CopyDataBlock( - uint dwSig, - out IntPtr ppDataBlock); - - void RemoveDataBlock( - uint dwSig); - - void GetFlags( - out int dwFlags); - - void SetFlags( - uint dwFlags); - } - - [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1305:FieldNamesMustNotUseHungarianNotation", Justification = "Matching COM Names")] - [ComImport, - InterfaceType(ComInterfaceType.InterfaceIsIUnknown), - Guid("0000010B-0000-0000-C000-000000000046")] - public interface IPersistFile - { - #region Methods inherited from IPersist - - void GetClassID( - out Guid pClassID); - - #endregion - - [PreserveSig] - int IsDirty(); - - void Load( - [MarshalAs(UnmanagedType.LPWStr)] string pszFileName, - int dwMode); - - void Save( - [MarshalAs(UnmanagedType.LPWStr)] string pszFileName, - [MarshalAs(UnmanagedType.Bool)] bool fRemember); - - void SaveCompleted( - [MarshalAs(UnmanagedType.LPWStr)] string pszFileName); - - void GetCurFile( - out IntPtr ppszFileName); - } - - // Win32 COORD - [StructLayout(LayoutKind.Sequential)] - public struct COORD - { - public short X; - public short Y; - } - - // IShellDataLink NT_CONSOLE_PROPS - [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1305:FieldNamesMustNotUseHungarianNotation", Justification = "Matching Windows Struct Names")] - [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1307:AccessibleFieldsMustBeginWithUpperCaseLetter", Justification = "Matching Windows Struct Names")] - [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] - public struct NT_CONSOLE_PROPS - { - public int cbSize; // Size of this extra data block - public uint dwSignature; // signature of this extra data block - public ushort wFillAttribute; // fill attribute for console - public ushort wPopupFillAttribute; // fill attribute for console popups - public COORD dwScreenBufferSize; // screen buffer size for console - public COORD dwWindowSize; // window size for console - public COORD dwWindowOrigin; // window origin for console - public int nFont; - public int nInputBufferSize; - public COORD dwFontSize; - public uint uFontFamily; - public uint uFontWeight; - [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] - public string FaceName; - public uint uCursorSize; - public bool bFullScreen; - public bool bQuickEdit; - public bool bInsertMode; - public bool bAutoPosition; - public uint uHistoryBufferSize; - public uint uNumberOfHistoryBuffers; - public bool bHistoryNoDup; - [MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] - public uint[] ColorTable; - } - - // WIN32_FIND_DATA - [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1305:FieldNamesMustNotUseHungarianNotation", Justification = "Matching Windows Struct Names")] - [SuppressMessage("StyleCop.CSharp.NamingRules", "SA1307:AccessibleFieldsMustBeginWithUpperCaseLetter", Justification = "Matching Windows Struct Names")] - public struct WIN32_FIND_DATAW - { - public int dwFileAttributes; - public System.Runtime.InteropServices.ComTypes.FILETIME ftCreationTime; - public System.Runtime.InteropServices.ComTypes.FILETIME ftLastAccessTime; - public System.Runtime.InteropServices.ComTypes.FILETIME ftLastWriteTime; - public int nFileSizeHigh; - public int nFileSizeLow; - public int dwReserved0; - public int dwReserved1; - [MarshalAs(UnmanagedType.ByValTStr, SizeConst = MAXPATH)] - public string cFileName; - [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 14)] - public string cAlternateFileName; - private const int MAXPATH = 260; - } - - public class ShellLink - { - private IShellLinkW shellLink; - private NT_CONSOLE_PROPS consoleProperties; - - public ShellLink(string path) - { - this.shellLink = Activator.CreateInstance(Type.GetTypeFromCLSID(new Guid("00021401-0000-0000-C000-000000000046"))) as IShellLinkW; - if (File.Exists(path)) - { - IntPtr consoleProperties = IntPtr.Zero; - ((IPersistFile)this.shellLink).Load(path, 0); - - try - { - ((IShellLinkDataList)this.shellLink).CopyDataBlock(0xA0000002, out consoleProperties); - this.consoleProperties = (NT_CONSOLE_PROPS)Marshal.PtrToStructure(consoleProperties, typeof(NT_CONSOLE_PROPS)); - } - catch (Exception) - { - } - } - else - { - ((IPersistFile)this.shellLink).Save(path, true); - } - - // Initialize default Console Properties (TODO: Fix this bug too) - if (this.consoleProperties.dwSignature != 0xA0000002) - { - this.consoleProperties = new NT_CONSOLE_PROPS(); - this.consoleProperties.cbSize = Marshal.SizeOf(this.consoleProperties); - this.consoleProperties.dwSignature = 0xA0000002; - this.consoleProperties.ColorTable = new uint[16]; - for (int i = 0; i < 16; i++) - { - this.consoleProperties.ColorTable[i] = 0xffffffff; - } - } - } - - public IShellLinkW IShellLink - { - get { return this.shellLink; } - } - - public string Path - { - get - { - StringBuilder sb = new StringBuilder(260); - WIN32_FIND_DATAW pfd = new WIN32_FIND_DATAW(); - this.IShellLink.GetPath(sb, 260, out pfd, SLGP_FLAGS.SLGP_RAWPATH); - return sb.ToString(); - } - set - { - this.IShellLink.SetPath(value); - } - } - - public string Description - { - get - { - StringBuilder sb = new StringBuilder(2048); - this.IShellLink.GetDescription(sb, 2048); - return sb.ToString(); - } - set { this.IShellLink.SetDescription(value); } - } - - public string WorkingDirectory - { - get - { - StringBuilder sb = new StringBuilder(260); - this.IShellLink.GetWorkingDirectory(sb, 260); - return sb.ToString(); - } - set { this.IShellLink.SetWorkingDirectory(value); } - } - - public ShowCmd ShowCmd - { - get - { - int showCmd; - this.IShellLink.GetShowCmd(out showCmd); - return (ShowCmd)Enum.ToObject(typeof(ShowCmd), showCmd); - } - set - { - this.IShellLink.SetShowCmd((int)value); - } - } - - public NT_CONSOLE_PROPS ConsoleProperties - { - get { return this.consoleProperties; } - set { this.consoleProperties = value; } - } - - public bool QuickEditMode - { - get { return this.consoleProperties.bQuickEdit; } - set { this.consoleProperties.bQuickEdit = value; } - } - - public bool InsertMode - { - get { return this.consoleProperties.bInsertMode; } - set { this.consoleProperties.bInsertMode = value; } - } - - public bool AutoPosition - { - get { return this.consoleProperties.bAutoPosition; } - set { this.consoleProperties.bAutoPosition = value; } - } - - public uint CommandHistoryBufferSize - { - get { return this.consoleProperties.uHistoryBufferSize; } - set { this.consoleProperties.uHistoryBufferSize = value; } - } - - public uint CommandHistoryBufferCount - { - get { return this.consoleProperties.uNumberOfHistoryBuffers; } - set { this.consoleProperties.uNumberOfHistoryBuffers = value; } - } - - public byte ScreenBackgroundColor - { - set - { - this.consoleProperties.wFillAttribute &= 0x000f; - this.consoleProperties.wFillAttribute += (ushort)(value << 4); - } - } - - public byte ScreenTextColor - { - set - { - this.consoleProperties.wFillAttribute &= 0x00f0; - this.consoleProperties.wFillAttribute += value; - } - } - - public byte PopUpBackgroundColor - { - set - { - this.consoleProperties.wPopupFillAttribute &= 0x000f; - this.consoleProperties.wPopupFillAttribute += (ushort)(value << 4); - } - } - - public byte PopUpTextColor - { - set - { - this.consoleProperties.wPopupFillAttribute &= 0x00f0; - this.consoleProperties.wPopupFillAttribute += value; - } - } - - public void Save(string path) - { - this.SetConsoleProperties(); - ((IPersistFile)this.shellLink).Save(path, true); - } - - public void Save() - { - this.SetConsoleProperties(); - ((IPersistFile)this.shellLink).Save(null, true); - } - - public void SetScreenBufferSize(short x, short y) - { - COORD c = new COORD(); - c.X = x; - c.Y = y; - this.consoleProperties.dwScreenBufferSize = c; - } - - public void SetWindowSize(short x, short y) - { - COORD c = new COORD(); - c.X = x; - c.Y = y; - this.consoleProperties.dwWindowSize = c; - } - - public void SetFont() - { - this.consoleProperties.FaceName = "Lucida Console"; - this.consoleProperties.uFontFamily = 54; - this.consoleProperties.uFontWeight = 400; - this.consoleProperties.uCursorSize = 25; - } - - // This does more than console colors - private void SetConsoleProperties() - { - IntPtr consoleProperties = Marshal.AllocCoTaskMem(this.consoleProperties.cbSize); - Marshal.StructureToPtr(this.consoleProperties, consoleProperties, true); - ((IShellLinkDataList)this.shellLink).RemoveDataBlock(0xA0000002); - ((IShellLinkDataList)this.shellLink).AddDataBlock(consoleProperties); - } - } -} \ No newline at end of file diff --git a/setup-powershellget/Setup/ShortcutStartup.ps1 b/setup-powershellget/Setup/ShortcutStartup.ps1 deleted file mode 100644 index d5d622081e41..000000000000 --- a/setup-powershellget/Setup/ShortcutStartup.ps1 +++ /dev/null @@ -1,109 +0,0 @@ -# ---------------------------------------------------------------------------------- -# -# Copyright Microsoft Corporation -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# http://www.apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ---------------------------------------------------------------------------------- -[CmdletBinding(DefaultParametersetName="none")] -Param( -[Parameter(Mandatory=$True, HelpMessage="Use Install parameter to install Azure modules from PowerShell Gallery.", ParameterSetName="install")] -[switch]$Install, -[Parameter(Mandatory=$True, HelpMessage="Use Uninstall parameter to uninstall Azure modules from PowerShell Gallery.", ParameterSetName="uninstall")] -[switch]$Uninstall -) - -function EnsureRegistryPath -{ - $originalpaths = (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PSModulePath).PSModulePath - if($originalpaths.Contains("$env:ProgramFiles\WindowsPowerShell\Modules") -eq $false) - { - Write-Output "Fixing PSModulePath" - $newPath = "$originalpaths;$env:ProgramFiles\WindowsPowerShell\Modules" - Set-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name PSModulePath –Value $newPath - } - else - { - Write-Output "PSModulePath successfuly validated" - } -} - -$error.clear() -try { - if ($Install.IsPresent) { - Write-Output @" - -Finalizing installation of Azure PowerShell. -Installing AzureRM Modules from PowerShell Gallery. -This may take some time... -"@ - $env:PSModulePath = "$env:USERPROFILE\Documents\WindowsPowerShell\Modules;$env:ProgramFiles\WindowsPowerShell\Modules;$env:SystemRoot\system32\WindowsPowerShell\v1.0\Modules\" - - Import-Module PackageManagement - - $result = Get-PackageProvider -Name NuGet -ForceBootstrap - - Import-Module PowerShellGet - - $DefaultPSRepository = $env:DefaultPSRepository - if ([string]::IsNullOrWhiteSpace($DefaultPSRepository)) - { - $DefaultPSRepository = "PSGallery" - } - - $_InstallationPolicy = (Get-PSRepository -Name $DefaultPSRepository).InstallationPolicy - try - { - Set-PSRepository -Name $DefaultPSRepository -InstallationPolicy Trusted - - Install-Module AzureRM -Repository $DefaultPSRepository - Write-Output "AzureRM $((Get-InstalledModule -Name AzureRM)[0].Version) installed..." - - Update-AzureRM -Repository $DefaultPSRepository - } finally { - # Clean up - Set-PSRepository -Name $DefaultPSRepository -InstallationPolicy $_InstallationPolicy - } - } - elseif ($Uninstall.IsPresent) - { - Write-Output @" - -Finalizing uninstallation of Azure PowerShell. -This may take some time... -"@ - $env:PSModulePath = "$env:USERPROFILE\Documents\WindowsPowerShell\Modules;$env:ProgramFiles\WindowsPowerShell\Modules;$env:SystemRoot\system32\WindowsPowerShell\v1.0\Modules\" - - Uninstall-AzureRM - Uninstall-Module -Name AzureRM -Confirm:$false -Force - } - else - { - cd c:\ - $welcomeMessage = @" -For a list of all Azure RM cmdlets type 'help azurerm'. - -To start using Azure RM login via Login-AzureRmAccount cmdlet. -To switch between subscriptions use Set-AzureRmContext. -For more details, see http://aka.ms/azps-getting-started. - -To use Azure Service Management cmdlets please execute the following cmdlet: - Install-Module Azure -"@ - Write-Output $welcomeMessage - } -} -catch -{ -Write-Output "An error occured during installation." -Write-Output $error -Write-Output "Press any key..." -$key = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown") -} - diff --git a/setup-powershellget/azurecmd.wxs b/setup-powershellget/azurecmd.wxs deleted file mode 100644 index bb0eea44a684..000000000000 --- a/setup-powershellget/azurecmd.wxs +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - < "5.0")]]> - - - - - - Installed OR NETFRAMEWORK40FULL OR NETFRAMEWORK40CLIENT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - NOT Installed - NOT Installed - NOT Installed - NOT Installed - (NOT UPGRADINGPRODUCTCODE) AND (REMOVE="ALL") - - - - - - - - diff --git a/setup-powershellget/bin/iisnode.dll b/setup-powershellget/bin/iisnode.dll deleted file mode 100644 index 136b447b9b67600cd7f022cced06fe42b00e30f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 132176 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 z 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 diff --git a/setup-powershellget/bin/iisnode_schema.xml b/setup-powershellget/bin/iisnode_schema.xml deleted file mode 100644 index 56ad644194ba..000000000000 --- a/setup-powershellget/bin/iisnode_schema.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/setup-powershellget/media/GettingStarted.url b/setup-powershellget/media/GettingStarted.url deleted file mode 100644 index cbd76c97d341..000000000000 --- a/setup-powershellget/media/GettingStarted.url +++ /dev/null @@ -1,5 +0,0 @@ -[{000214A0-0000-0000-C000-000000000046}] -Prop3=19,2 -[InternetShortcut] -URL=http://go.microsoft.com/?linkid=9791397 -IDList= diff --git a/setup-powershellget/media/License.rtf b/setup-powershellget/media/License.rtf deleted file mode 100644 index fe4ca72a0de0..000000000000 --- a/setup-powershellget/media/License.rtf +++ /dev/null @@ -1,213 +0,0 @@ -{\rtf1\ansi\ansicpg936\deff0\nouicompat\deflang1033\deflangfe2052{\fonttbl{\f0\fnil\fcharset0 Courier New;}} -{\colortbl ;\red0\green0\blue255;} -{\*\generator Riched20 6.3.9600}\viewkind4\uc1 -\pard\sl240\slmult1\f0\fs20\lang9 MICROSOFT SOFTWARE LICENSE TERMS\par -\par -MICROSOFT AZURE POWERSHELL \par -\par -These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any.\par -\par -BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\par -\par -\par ------------------START OF LICENSE--------------------------\par -\par - Apache License\par - Version 2.0, January 2004\par - {{\field{\*\fldinst{HYPERLINK http://www.apache.org/licenses/ }}{\fldrslt{http://www.apache.org/licenses/\ul0\cf0}}}}\f0\fs20\par -\par - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\par -\par - 1. Definitions.\par -\par - "License" shall mean the terms and conditions for use, reproduction,\par - and distribution as defined by Sections 1 through 9 of this document.\par -\par - "Licensor" shall mean the copyright owner or entity authorized by\par - the copyright owner that is granting the License.\par -\par - "Legal Entity" shall mean the union of the acting entity and all\par - other entities that control, are controlled by, or are under common\par - control with that entity. For the purposes of this definition,\par - "control" means (i) the power, direct or indirect, to cause the\par - direction or management of such entity, whether by contract or\par - otherwise, or (ii) ownership of fifty percent (50%) or more of the\par - outstanding shares, or (iii) beneficial ownership of such entity.\par -\par - "You" (or "Your") shall mean an individual or Legal Entity\par - exercising permissions granted by this License.\par -\par - "Source" form shall mean the preferred form for making modifications,\par - including but not limited to software source code, documentation\par - source, and configuration files.\par -\par - "Object" form shall mean any form resulting from mechanical\par - transformation or translation of a Source form, including but\par - not limited to compiled object code, generated documentation,\par - and conversions to other media types.\par -\par - "Work" shall mean the work of authorship, whether in Source or\par - Object form, made available under the License, as indicated by a\par - copyright notice that is included in or attached to the work\par - (an example is provided in the Appendix below).\par -\par - "Derivative Works" shall mean any work, whether in Source or Object\par - form, that is based on (or derived from) the Work and for which the\par - editorial revisions, annotations, elaborations, or other modifications\par - represent, as a whole, an original work of authorship. For the purposes\par - of this License, Derivative Works shall not include works that remain\par - separable from, or merely link (or bind by name) to the interfaces of,\par - the Work and Derivative Works thereof.\par -\par - "Contribution" shall mean any work of authorship, including\par - the original version of the Work and any modifications or additions\par - to that Work or Derivative Works thereof, that is intentionally\par - submitted to Licensor for inclusion in the Work by the copyright owner\par - or by an individual or Legal Entity authorized to submit on behalf of\par - the copyright owner. For the purposes of this definition, "submitted"\par - means any form of electronic, verbal, or written communication sent\par - to the Licensor or its representatives, including but not limited to\par - communication on electronic mailing lists, source code control systems,\par - and issue tracking systems that are managed by, or on behalf of, the\par - Licensor for the purpose of discussing and improving the Work, but\par - excluding communication that is conspicuously marked or otherwise\par - designated in writing by the copyright owner as "Not a Contribution."\par -\par - "Contributor" shall mean Licensor and any individual or Legal Entity\par - on behalf of whom a Contribution has been received by Licensor and\par - subsequently incorporated within the Work.\par -\par - 2. Grant of Copyright License. Subject to the terms and conditions of\par - this License, each Contributor hereby grants to You a perpetual,\par - worldwide, non-exclusive, no-charge, royalty-free, irrevocable\par - copyright license to reproduce, prepare Derivative Works of,\par - publicly display, publicly perform, sublicense, and distribute the\par - Work and such Derivative Works in Source or Object form.\par -\par - 3. Grant of Patent License. Subject to the terms and conditions of\par - this License, each Contributor hereby grants to You a perpetual,\par - worldwide, non-exclusive, no-charge, royalty-free, irrevocable\par - (except as stated in this section) patent license to make, have made,\par - use, offer to sell, sell, import, and otherwise transfer the Work,\par - where such license applies only to those patent claims licensable\par - by such Contributor that are necessarily infringed by their\par - Contribution(s) alone or by combination of their Contribution(s)\par - with the Work to which such Contribution(s) was submitted. If You\par - institute patent litigation against any entity (including a\par - cross-claim or counterclaim in a lawsuit) alleging that the Work\par - or a Contribution incorporated within the Work constitutes direct\par - or contributory patent infringement, then any patent licenses\par - granted to You under this License for that Work shall terminate\par - as of the date such litigation is filed.\par -\par - 4. Redistribution. You may reproduce and distribute copies of the\par - Work or Derivative Works thereof in any medium, with or without\par - modifications, and in Source or Object form, provided that You\par - meet the following conditions:\par -\par - (a) You must give any other recipients of the Work or\par - Derivative Works a copy of this License; and\par -\par - (b) You must cause any modified files to carry prominent notices\par - stating that You changed the files; and\par -\par - (c) You must retain, in the Source form of any Derivative Works\par - that You distribute, all copyright, patent, trademark, and\par - attribution notices from the Source form of the Work,\par - excluding those notices that do not pertain to any part of\par - the Derivative Works; and\par -\par - (d) If the Work includes a "NOTICE" text file as part of its\par - distribution, then any Derivative Works that You distribute must\par - include a readable copy of the attribution notices contained\par - within such NOTICE file, excluding those notices that do not\par - pertain to any part of the Derivative Works, in at least one\par - of the following places: within a NOTICE text file distributed\par - as part of the Derivative Works; within the Source form or\par - documentation, if provided along with the Derivative Works; or,\par - within a display generated by the Derivative Works, if and\par - wherever such third-party notices normally appear. The contents\par - of the NOTICE file are for informational purposes only and\par - do not modify the License. You may add Your own attribution\par - notices within Derivative Works that You distribute, alongside\par - or as an addendum to the NOTICE text from the Work, provided\par - that such additional attribution notices cannot be construed\par - as modifying the License.\par -\par - You may add Your own copyright statement to Your modifications and\par - may provide additional or different license terms and conditions\par - for use, reproduction, or distribution of Your modifications, or\par - for any such Derivative Works as a whole, provided Your use,\par - reproduction, and distribution of the Work otherwise complies with\par - the conditions stated in this License.\par -\par - 5. Submission of Contributions. Unless You explicitly state otherwise,\par - any Contribution intentionally submitted for inclusion in the Work\par - by You to the Licensor shall be under the terms and conditions of\par - this License, without any additional terms or conditions.\par - Notwithstanding the above, nothing herein shall supersede or modify\par - the terms of any separate license agreement you may have executed\par - with Licensor regarding such Contributions.\par -\par - 6. Trademarks. This License does not grant permission to use the trade\par - names, trademarks, service marks, or product names of the Licensor,\par - except as required for reasonable and customary use in describing the\par - origin of the Work and reproducing the content of the NOTICE file.\par -\par - 7. Disclaimer of Warranty. Unless required by applicable law or\par - agreed to in writing, Licensor provides the Work (and each\par - Contributor provides its Contributions) on an "AS IS" BASIS,\par - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\par - implied, including, without limitation, any warranties or conditions\par - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\par - PARTICULAR PURPOSE. You are solely responsible for determining the\par - appropriateness of using or redistributing the Work and assume any\par - risks associated with Your exercise of permissions under this License.\par -\par - 8. Limitation of Liability. In no event and under no legal theory,\par - whether in tort (including negligence), contract, or otherwise,\par - unless required by applicable law (such as deliberate and grossly\par - negligent acts) or agreed to in writing, shall any Contributor be\par - liable to You for damages, including any direct, indirect, special,\par - incidental, or consequential damages of any character arising as a\par - result of this License or out of the use or inability to use the\par - Work (including but not limited to damages for loss of goodwill,\par - work stoppage, computer failure or malfunction, or any and all\par - other commercial damages or losses), even if such Contributor\par - has been advised of the possibility of such damages.\par -\par - 9. Accepting Warranty or Additional Liability. While redistributing\par - the Work or Derivative Works thereof, You may choose to offer,\par - and charge a fee for, acceptance of support, warranty, indemnity,\par - or other liability obligations and/or rights consistent with this\par - License. However, in accepting such obligations, You may act only\par - on Your own behalf and on Your sole responsibility, not on behalf\par - of any other Contributor, and only if You agree to indemnify,\par - defend, and hold each Contributor harmless for any liability\par - incurred by, or claims asserted against, such Contributor by reason\par - of your accepting any such warranty or additional liability.\par -\par --------------------END OF LICENSE-------------------------------\par -\par -The software includes the AutoMapper library ("AutoMapper"). The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software.\par -\par -----------------START OF LICENSE--------------------------------\par -\par -Provided for Informational Purposes Only\par -\par -AutoMapper\par -\par -The MIT License (MIT)\par -\par -Copyright (c) 2010 Jimmy Bogard\par -\par -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\par -\par -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\par -\par -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\par -\par --------------END OF LICENSE----------------------------------------\par -\par -} - diff --git a/setup-powershellget/media/WAIcon.ico b/setup-powershellget/media/WAIcon.ico deleted file mode 100644 index 76425402df61d7a15215e479f5f991ba5860802a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1150 zcmZQzU<5(|0R|wcz>vYhz#zuJz@P!dKp~(AL>x#lFaYJy!TTuEc)ZmkY znTJmeKDptfALLI;Ff1(4>5&qC=>CTBiS<8v`iJEaV)f&TJHq*of#LrH28NHof}s%$ N1||)x;vn@PeE@Yk)*1i+ diff --git a/setup-powershellget/media/bannrbmp.bmp b/setup-powershellget/media/bannrbmp.bmp deleted file mode 100644 index e115559090c43dae1cee95cb0be214015f26815c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 85896 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 KLsnp9 - - - Debug - x86 - 3.5 - {36d6e303-e057-4963-a093-c7aae0fd92b3} - 2.0 - AzurePowerShellGet - Package - $(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets - $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets - AzurePowershell - - - build\$(Configuration)\ - obj\$(Configuration)\ - Debug - ICE30;ICE91;ICE64;ICE61;ICE69 - - - build\$(Configuration)\ - obj\$(Configuration)\ - ICE30;ICE91;ICE64;ICE61;ICE69 - - - - $(WixExtDir)\WixNetFxExtension.dll - WixNetFxExtension - - - $(WixExtDir)\WixUtilExtension.dll - WixUtilExtension - - - $(WixExtDir)\WixUIExtension.dll - WixUIExtension - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tools/BuildInstaller.ps1 b/tools/BuildInstaller.ps1 index 150fb3fddde4..e2b3093a7453 100644 --- a/tools/BuildInstaller.ps1 +++ b/tools/BuildInstaller.ps1 @@ -57,4 +57,3 @@ $env:path = $env:path + ";$wixInstallRoot" msbuild "$env:AzurePSRoot\build.proj" /t:Build Write-Host "MSI file path: $env:AzurePSRoot\setup\build\Debug\AzurePowerShell.msi" -Write-Host "MSI for PowerShell Gallery: $env:AzurePSRoot\setup-powershellget\build\Debug\AzurePowerShellGet.msi" \ No newline at end of file