MSSQL Management Studioテーマを変更する方法


回答:


4
  1. 2010 Color Theme EditorをVS 2010にインストールします。
  2. C:\Users\xxxxx\AppData\Local\Microsoft\VisualStudio\xx.x\Extensions\私の場合\shvn3avp.comは、プラグインの現在のバージョンのファイルでした。
  3. これらのファイルを新しいフォルダーにコピーします。 C:\Program Files (x86)\Microsoft SQL Server\xxx\Tools\Binn\ManagementStudio\Extensions\VSTheme
  4. extension.vsixmanifest内容を次のものに置き換えます。

    <?xml version="1.0" encoding="utf-8"?>
    <Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
    <Identifier Id="46b3817c-b0c3-42d1-8cea-d373f781b21e">
      <Name>Visual Studio Color Theme Editor</Name>
      <Author>Microsoft</Author>
      <Version>1.3</Version>
      <Description xml:space="preserve">Allows users to customize the color palette used for menus, toolbars, tabs, title bars, and other environment colors.</Description>
      <Locale>1033</Locale>
      <Icon>ThemeManagerIcon.png</Icon>
      <PreviewImage>ThemeManagerPreview.png</PreviewImage>
      <InstalledByMsi>true</InstalledByMsi>
      <SupportedProducts>
        <IsolatedShell Version="1.0">ssms</IsolatedShell>
        <VisualStudio Version="10.0">
          <Edition>Ultimate</Edition>
          <Edition>Premium</Edition>
          <Edition>Pro</Edition>
          <Edition>IntegratedShell</Edition>
        </VisualStudio>
      </SupportedProducts>
      <SupportedFrameworkRuntimeEdition MinVersion="3.0" MaxVersion="6.0" />
      <SystemComponent>true</SystemComponent>
    </Identifier>
    <References />
    <Content>
      <VsPackage>ThemeManagerPackage.pkgdef</VsPackage>
    </Content>
    

  5. この設定をインポート:http : //studiostyl.es/schemes/vs2012-dark-theme-for-vs2010

  6. 拡張機能によって提供されるテーマメニューで開く[色のカスタマイズ]ダイアログで、テーマをインポートします

結果:

ここに画像の説明を入力してください

2015およびSQL Management Studio 17RC1の場合

代わりに、VS2015に拡張機能をインストールしてください。上記の手順に従ってください。

私のコンピューター上のフォルダーは C:\Users\xxxxxx\AppData\Local\Microsoft\VisualStudio\14.0\Extensions\owbugenu.gif

xmlは次のとおりです。

<!-- language: lang-xml -->
<?xml version="1.0" encoding="utf-8"?>
<Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
  <Identifier Id="B8CED2B3-FF48-4204-88E9-036CA39B83C8">
    <Name>Visual Studio 2015 Color Theme Editor</Name>
    <Author>Microsoft</Author>
    <Version>2.0</Version>
    <Description xml:space="preserve">Allows users to create and edit Visual Studio themes.  Themes can customize colors used for menus, toolbars, tabs, titlebars, the text editor, and other environment colors.</Description>
    <Locale>1033</Locale>
    <InstalledByMsi>true</InstalledByMsi>
    <SupportedProducts>
      <IsolatedShell Version="1.0">ssms</IsolatedShell>
    </SupportedProducts>
    <SupportedFrameworkRuntimeEdition MinVersion="4.0" MaxVersion="4.0" />
    <SystemComponent>true</SystemComponent>
  </Identifier>
  <References />
  <Content>
    <VsPackage>ColorThemeEditor.pkgdef</VsPackage>
    <VsPackage>Colors\Red.pkgdef</VsPackage>
    <VsPackage>Colors\Purple.pkgdef</VsPackage>
    <VsPackage>Colors\Green.pkgdef</VsPackage>
    <VsPackage>Colors\Tan.pkgdef</VsPackage>
    <VsPackage>Colors\DarkWithLightEditor.pkgdef</VsPackage>
    <VsPackage>Colors\LightWithDarkEditor.pkgdef</VsPackage>
    <VsPackage>Colors\SolarizedDark.pkgdef</VsPackage>
    <VsPackage>Colors\SolarizedLight.pkgdef</VsPackage>
    <MefComponent>ColorThemeEditor.dll</MefComponent>  
    <VsPackage>Colors\ThemeNames.pkgdef</VsPackage>
    <VsPackage>PkgDefAssemblyCodeBase.pkgdef</VsPackage>
  </Content>
</Vsix>

ここに画像の説明を入力してください ここに画像の説明を入力してください


2

最新のSSMS v17.0(または2016)では、ファイル"C:\ Program Files(x86)\ Microsoft SQL Server \ 140 \ Tools \ Binn \ ManagementStudio \ ssms.pkgundef "(管理者として)および" Remove Dark theme "コメント(約241行目)に続く行をコメント化すると、終了後は次のようになります。

// Remove Dark theme
// [$RootKey$\Themes\{1ded0138-47ce-435e-84ef-9ec1f439b749}]
// [$RootKey$\AD7Metrics\PortSupplier\{4103F338-2255-40C0-ACF5-7380E2BEA13D}]
// [$RootKey$\External Tools\Error Loo&kup]
// [$RootKey$\LightSwitch]
// [$RootKey$\Debugger\LaunchHooks110]
// [$RootKey$\DiagnosticsHub]
// [$RootKey$\FeatureFlags]
// [$RootKey$\VB Editor]
// [$RootKey$\Languages\CodeExpansions\C/C++]
// [$RootKey$\Languages\CodeExpansions\JavaScript]
// [$RootKey$\Text Editor\C/C++]
// [$RootKey$\Text Editor\CSharp]
// [$RootKey$\Text Editor\Disassembly]
// [$RootKey$\Text Editor\ENC]
// [$RootKey$\Text Editor\JavaScript]
// [$RootKey$\Text Editor\Memory]
// [$RootKey$\Text Editor\Register]
// [$RootKey$\Text Editor\ResJSON]
// [$RootKey$\Text Editor\TypeScript]
// [$RootKey$\Text Editor\VBScript]

https://community.spiceworks.com/how_to/136505-enable-dark-theme-in-sql-server-management-studio-2016経由


このソリューションの問題は、オブジェクトエクスプローラーウィンドウのスクリプトテーブルを右クリックすると、メニューが完全に読めなくなることです。あなたはそれを乗り越えましたか?
Przemyslaw Remin 2017年

@PrzemyslawReminいいえ、私は最近SSMSを更新したと思いますが、とにかくこれを元に戻したので、あきらめました
drzaus


1

または...この.vssettingsファイルをインポートするだけです。

利用可能なダウンロードがありますが、何らかの理由で.docとしてダウンロードされます。.doc拡張子をドロップした後でインポートできます。

https://mikesdatawork.wordpress.com/2017/07/07/dark-ssms-theme-ssms-2017/

ダークSSMSテーマ.vssettingsファイル


こんにちは!この回答を追加していただきありがとうございます。これはあなたのサイトだと思います。作成したリンクやコンテンツを投稿するときは、所属を必ず開示してください
LowlyDBA 2017

0

SSMS 2016では、これはVisual Studio 2015 Integrated Shellで実行されるようになり、vsixmanifestファイルで何も変更せずに、ColorThemeのVisual Studio 2015 Extensionで同じことを実行できます。

欠点は、拡張機能の読み込みに失敗したことを示すこのポップアップエラーがあることです。「いいえ」をクリックするだけで、SSMSはエラーを表示しなくなります。

ポップアップエラー

最初、ColorThemeは正しく読み込まれませんが、SSMSを再起動すると読み込まれます。編集:SSMSを再起動した後、エラーがポップアップ表示されます。

SSMSを再起動すると、1日おきに節約できます


それは完璧ではありません。サポートされていません。2015年版を投稿します
regisbsb 2017年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.