Add files via upload
This commit is contained in:
parent
bbb17c841a
commit
001e0fecf2
5 changed files with 360 additions and 138 deletions
24
src/Privatezilla/MainWindow.Designer.cs
generated
24
src/Privatezilla/MainWindow.Designer.cs
generated
|
@ -42,7 +42,7 @@
|
|||
this.LblSettings = new System.Windows.Forms.LinkLabel();
|
||||
this.LstPS = new System.Windows.Forms.CheckedListBox();
|
||||
this.PnlSettings = new System.Windows.Forms.Panel();
|
||||
this.PicOpenGitHubPage = new System.Windows.Forms.PictureBox();
|
||||
this.assetOpenGitHub = new System.Windows.Forms.PictureBox();
|
||||
this.PBar = new System.Windows.Forms.ProgressBar();
|
||||
this.LvwStatus = new System.Windows.Forms.ListView();
|
||||
this.Setting = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
|
@ -68,7 +68,7 @@
|
|||
this.MainMenu.SuspendLayout();
|
||||
this.PnlNav.SuspendLayout();
|
||||
this.PnlSettings.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.PicOpenGitHubPage)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.assetOpenGitHub)).BeginInit();
|
||||
this.PnlPS.SuspendLayout();
|
||||
this.PSMenu.SuspendLayout();
|
||||
this.PnlSettingsBottom.SuspendLayout();
|
||||
|
@ -186,20 +186,20 @@
|
|||
// PnlSettings
|
||||
//
|
||||
resources.ApplyResources(this.PnlSettings, "PnlSettings");
|
||||
this.PnlSettings.Controls.Add(this.PicOpenGitHubPage);
|
||||
this.PnlSettings.Controls.Add(this.assetOpenGitHub);
|
||||
this.PnlSettings.Controls.Add(this.PBar);
|
||||
this.PnlSettings.Controls.Add(this.LvwStatus);
|
||||
this.PnlSettings.Controls.Add(this.LblStatus);
|
||||
this.PnlSettings.Name = "PnlSettings";
|
||||
//
|
||||
// PicOpenGitHubPage
|
||||
// assetOpenGitHub
|
||||
//
|
||||
resources.ApplyResources(this.PicOpenGitHubPage, "PicOpenGitHubPage");
|
||||
this.PicOpenGitHubPage.Cursor = System.Windows.Forms.Cursors.Hand;
|
||||
this.PicOpenGitHubPage.Name = "PicOpenGitHubPage";
|
||||
this.PicOpenGitHubPage.TabStop = false;
|
||||
this.ToolTip.SetToolTip(this.PicOpenGitHubPage, resources.GetString("PicOpenGitHubPage.ToolTip"));
|
||||
this.PicOpenGitHubPage.Click += new System.EventHandler(this.PicOpenGitHubPage_Click);
|
||||
resources.ApplyResources(this.assetOpenGitHub, "assetOpenGitHub");
|
||||
this.assetOpenGitHub.Cursor = System.Windows.Forms.Cursors.Hand;
|
||||
this.assetOpenGitHub.Name = "assetOpenGitHub";
|
||||
this.assetOpenGitHub.TabStop = false;
|
||||
this.ToolTip.SetToolTip(this.assetOpenGitHub, resources.GetString("assetOpenGitHub.ToolTip"));
|
||||
this.assetOpenGitHub.Click += new System.EventHandler(this.assetOpenGitHubPage_Click);
|
||||
//
|
||||
// PBar
|
||||
//
|
||||
|
@ -408,7 +408,7 @@
|
|||
this.PnlNav.ResumeLayout(false);
|
||||
this.PnlNav.PerformLayout();
|
||||
this.PnlSettings.ResumeLayout(false);
|
||||
((System.ComponentModel.ISupportInitialize)(this.PicOpenGitHubPage)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.assetOpenGitHub)).EndInit();
|
||||
this.PnlPS.ResumeLayout(false);
|
||||
this.PnlPS.PerformLayout();
|
||||
this.PSMenu.ResumeLayout(false);
|
||||
|
@ -449,7 +449,7 @@
|
|||
private System.Windows.Forms.ToolTip ToolTip;
|
||||
private System.Windows.Forms.Button BtnMenuPS;
|
||||
private System.Windows.Forms.Label LblPSHeader;
|
||||
private System.Windows.Forms.PictureBox PicOpenGitHubPage;
|
||||
private System.Windows.Forms.PictureBox assetOpenGitHub;
|
||||
private System.Windows.Forms.Panel PnlSettingsBottom;
|
||||
private System.Windows.Forms.Button BtnDoPS;
|
||||
private System.Windows.Forms.CheckBox ChkCodePS;
|
||||
|
|
|
@ -25,7 +25,7 @@ namespace Privatezilla
|
|||
private readonly string _finishUndo = Properties.Resources.statusFinishUndo;
|
||||
private readonly string _finishAnalyze = Properties.Resources.statusFinishAnalyze;
|
||||
private readonly string _doWait = Properties.Resources.statusDoWait;
|
||||
private readonly string _undoSettings = Properties.Resources.statusDoSettings;
|
||||
private readonly string _undoSettings = Properties.Resources.statusUndoSettings;
|
||||
|
||||
private readonly string _helpApp = Properties.Resources.helpApp.Replace("\\r\\n", "\r\n");
|
||||
|
||||
|
@ -114,7 +114,7 @@ namespace Privatezilla
|
|||
PSMarketplace.Text = Properties.Resources.PSMarketplace;
|
||||
PSSaveAs.Text = Properties.Resources.PSSaveAs;
|
||||
Setting.Text = Properties.Resources.columnSetting; // Status column
|
||||
State.Text = Properties.Resources.columnState; // Status column
|
||||
State.Text = Properties.Resources.columnState; // State column
|
||||
}
|
||||
|
||||
public MainWindow()
|
||||
|
@ -770,7 +770,7 @@ namespace Privatezilla
|
|||
this.PSMenu.Show(Cursor.Position.X, Cursor.Position.Y);
|
||||
}
|
||||
|
||||
private void PicOpenGitHubPage_Click(object sender, EventArgs e)
|
||||
private void assetOpenGitHubPage_Click(object sender, EventArgs e)
|
||||
{
|
||||
Process.Start("https://github.com/builtbybel/privatezilla");
|
||||
}
|
||||
|
|
|
@ -183,6 +183,15 @@
|
|||
<data name="MainMenu.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 14.25pt</value>
|
||||
</data>
|
||||
<data name="MainMenu.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>271, 116</value>
|
||||
</data>
|
||||
<data name=">>MainMenu.Name" xml:space="preserve">
|
||||
<value>MainMenu</value>
|
||||
</data>
|
||||
<data name=">>MainMenu.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="Help.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 12.75pt</value>
|
||||
</data>
|
||||
|
@ -227,18 +236,69 @@
|
|||
<data name="Info.Text" xml:space="preserve">
|
||||
<value>Info</value>
|
||||
</data>
|
||||
<data name="MainMenu.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>271, 116</value>
|
||||
</data>
|
||||
<data name=">>MainMenu.Name" xml:space="preserve">
|
||||
<value>MainMenu</value>
|
||||
</data>
|
||||
<data name=">>MainMenu.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<metadata name="PnlNav.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name=">>LblPS.Name" xml:space="preserve">
|
||||
<value>LblPS</value>
|
||||
</data>
|
||||
<data name=">>LblPS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>LblPS.Parent" xml:space="preserve">
|
||||
<value>PnlNav</value>
|
||||
</data>
|
||||
<data name=">>LblPS.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name=">>LblSettings.Name" xml:space="preserve">
|
||||
<value>LblSettings</value>
|
||||
</data>
|
||||
<data name=">>LblSettings.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>LblSettings.Parent" xml:space="preserve">
|
||||
<value>PnlNav</value>
|
||||
</data>
|
||||
<data name=">>LblSettings.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name=">>LstPS.Name" xml:space="preserve">
|
||||
<value>LstPS</value>
|
||||
</data>
|
||||
<data name=">>LstPS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>LstPS.Parent" xml:space="preserve">
|
||||
<value>PnlNav</value>
|
||||
</data>
|
||||
<data name=">>LstPS.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="PnlNav.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Left</value>
|
||||
</data>
|
||||
<data name="PnlNav.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="PnlNav.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>367, 837</value>
|
||||
</data>
|
||||
<data name="PnlNav.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>26</value>
|
||||
</data>
|
||||
<data name=">>PnlNav.Name" xml:space="preserve">
|
||||
<value>PnlNav</value>
|
||||
</data>
|
||||
<data name=">>PnlNav.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>PnlNav.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>PnlNav.ZOrder" xml:space="preserve">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="LblPS.AutoSize" type="System.Boolean, mscorlib">
|
||||
<value>True</value>
|
||||
</data>
|
||||
|
@ -338,37 +398,13 @@
|
|||
<data name=">>LstPS.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="PnlNav.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Left</value>
|
||||
</data>
|
||||
<data name="PnlNav.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>0, 0</value>
|
||||
</data>
|
||||
<data name="PnlNav.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>367, 837</value>
|
||||
</data>
|
||||
<data name="PnlNav.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>26</value>
|
||||
</data>
|
||||
<data name=">>PnlNav.Name" xml:space="preserve">
|
||||
<value>PnlNav</value>
|
||||
</data>
|
||||
<data name=">>PnlNav.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>PnlNav.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>PnlNav.ZOrder" xml:space="preserve">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="PnlSettings.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Bottom, Left, Right</value>
|
||||
</data>
|
||||
<data name="PicOpenGitHubPage.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<data name="assetOpenGitHub.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Right</value>
|
||||
</data>
|
||||
<data name="PicOpenGitHubPage.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<data name="assetOpenGitHub.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAiJJREFUSEvd
|
||||
lU1r1FAYheMHSgUVVyIIBVvQYW5SsG66c9GFqC0qfiG69leoWXRyb6R2oRuhIH6s9AeI+/6CopaRYSY3
|
||||
|
@ -383,31 +419,31 @@
|
|||
1jKqDLJlDQAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="PicOpenGitHubPage.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<data name="assetOpenGitHub.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>681, 7</value>
|
||||
</data>
|
||||
<data name="PicOpenGitHubPage.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<data name="assetOpenGitHub.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>24, 24</value>
|
||||
</data>
|
||||
<data name="PicOpenGitHubPage.TabIndex" type="System.Int32, mscorlib">
|
||||
<data name="assetOpenGitHub.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>32</value>
|
||||
</data>
|
||||
<metadata name="ToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>229, 19</value>
|
||||
</metadata>
|
||||
<data name="PicOpenGitHubPage.ToolTip" xml:space="preserve">
|
||||
<value>I'm open on github/privatezilla</value>
|
||||
<data name="assetOpenGitHub.ToolTip" xml:space="preserve">
|
||||
<value>Open @github.com/builtbybel/privatezilla</value>
|
||||
</data>
|
||||
<data name=">>PicOpenGitHubPage.Name" xml:space="preserve">
|
||||
<value>PicOpenGitHubPage</value>
|
||||
<data name=">>assetOpenGitHub.Name" xml:space="preserve">
|
||||
<value>assetOpenGitHub</value>
|
||||
</data>
|
||||
<data name=">>PicOpenGitHubPage.Type" xml:space="preserve">
|
||||
<data name=">>assetOpenGitHub.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>PicOpenGitHubPage.Parent" xml:space="preserve">
|
||||
<data name=">>assetOpenGitHub.Parent" xml:space="preserve">
|
||||
<value>PnlSettings</value>
|
||||
</data>
|
||||
<data name=">>PicOpenGitHubPage.ZOrder" xml:space="preserve">
|
||||
<data name=">>assetOpenGitHub.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="PBar.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
|
@ -440,18 +476,6 @@
|
|||
<data name="LvwStatus.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Bottom, Left, Right</value>
|
||||
</data>
|
||||
<data name="Setting.Text" xml:space="preserve">
|
||||
<value>Setting</value>
|
||||
</data>
|
||||
<data name="Setting.Width" type="System.Int32, mscorlib">
|
||||
<value>550</value>
|
||||
</data>
|
||||
<data name="State.Text" xml:space="preserve">
|
||||
<value>State</value>
|
||||
</data>
|
||||
<data name="State.Width" type="System.Int32, mscorlib">
|
||||
<value>150</value>
|
||||
</data>
|
||||
<data name="LvwStatus.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI Semilight, 12pt</value>
|
||||
</data>
|
||||
|
@ -527,6 +551,18 @@
|
|||
<data name=">>PnlSettings.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="Setting.Text" xml:space="preserve">
|
||||
<value>Setting</value>
|
||||
</data>
|
||||
<data name="Setting.Width" type="System.Int32, mscorlib">
|
||||
<value>550</value>
|
||||
</data>
|
||||
<data name="State.Text" xml:space="preserve">
|
||||
<value>State</value>
|
||||
</data>
|
||||
<data name="State.Width" type="System.Int32, mscorlib">
|
||||
<value>150</value>
|
||||
</data>
|
||||
<data name="BtnSettingsUndo.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Bottom, Right</value>
|
||||
</data>
|
||||
|
@ -629,6 +665,90 @@
|
|||
<data name="PnlPS.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Bottom, Left, Right</value>
|
||||
</data>
|
||||
<data name=">>BtnMenuPS.Name" xml:space="preserve">
|
||||
<value>BtnMenuPS</value>
|
||||
</data>
|
||||
<data name=">>BtnMenuPS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>BtnMenuPS.Parent" xml:space="preserve">
|
||||
<value>PnlPS</value>
|
||||
</data>
|
||||
<data name=">>BtnMenuPS.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name=">>TxtPSInfo.Name" xml:space="preserve">
|
||||
<value>TxtPSInfo</value>
|
||||
</data>
|
||||
<data name=">>TxtPSInfo.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>TxtPSInfo.Parent" xml:space="preserve">
|
||||
<value>PnlPS</value>
|
||||
</data>
|
||||
<data name=">>TxtPSInfo.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name=">>TxtOutputPS.Name" xml:space="preserve">
|
||||
<value>TxtOutputPS</value>
|
||||
</data>
|
||||
<data name=">>TxtOutputPS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>TxtOutputPS.Parent" xml:space="preserve">
|
||||
<value>PnlPS</value>
|
||||
</data>
|
||||
<data name=">>TxtOutputPS.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name=">>TxtConsolePS.Name" xml:space="preserve">
|
||||
<value>TxtConsolePS</value>
|
||||
</data>
|
||||
<data name=">>TxtConsolePS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>TxtConsolePS.Parent" xml:space="preserve">
|
||||
<value>PnlPS</value>
|
||||
</data>
|
||||
<data name=">>TxtConsolePS.ZOrder" xml:space="preserve">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name=">>LblPSHeader.Name" xml:space="preserve">
|
||||
<value>LblPSHeader</value>
|
||||
</data>
|
||||
<data name=">>LblPSHeader.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>LblPSHeader.Parent" xml:space="preserve">
|
||||
<value>PnlPS</value>
|
||||
</data>
|
||||
<data name=">>LblPSHeader.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="PnlPS.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>366, 0</value>
|
||||
</data>
|
||||
<data name="PnlPS.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>716, 773</value>
|
||||
</data>
|
||||
<data name="PnlPS.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>113</value>
|
||||
</data>
|
||||
<data name="PnlPS.Visible" type="System.Boolean, mscorlib">
|
||||
<value>False</value>
|
||||
</data>
|
||||
<data name=">>PnlPS.Name" xml:space="preserve">
|
||||
<value>PnlPS</value>
|
||||
</data>
|
||||
<data name=">>PnlPS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>PnlPS.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>PnlPS.ZOrder" xml:space="preserve">
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name="BtnMenuPS.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Top, Right</value>
|
||||
</data>
|
||||
|
@ -816,36 +936,21 @@ To obtain new objects (templates, scripts etc.) visit the Marketplace in the upp
|
|||
<data name=">>LblPSHeader.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="PnlPS.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>366, 0</value>
|
||||
</data>
|
||||
<data name="PnlPS.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>716, 773</value>
|
||||
</data>
|
||||
<data name="PnlPS.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>113</value>
|
||||
</data>
|
||||
<data name="PnlPS.Visible" type="System.Boolean, mscorlib">
|
||||
<value>False</value>
|
||||
</data>
|
||||
<data name=">>PnlPS.Name" xml:space="preserve">
|
||||
<value>PnlPS</value>
|
||||
</data>
|
||||
<data name=">>PnlPS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>PnlPS.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>PnlPS.ZOrder" xml:space="preserve">
|
||||
<value>5</value>
|
||||
</data>
|
||||
<metadata name="PSMenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>132, 19</value>
|
||||
</metadata>
|
||||
<data name="PSMenu.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 14.25pt, style=Bold</value>
|
||||
</data>
|
||||
<data name="PSMenu.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>353, 82</value>
|
||||
</data>
|
||||
<data name=">>PSMenu.Name" xml:space="preserve">
|
||||
<value>PSMenu</value>
|
||||
</data>
|
||||
<data name=">>PSMenu.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="PSImport.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Segoe UI, 12pt</value>
|
||||
</data>
|
||||
|
@ -890,14 +995,53 @@ To obtain new objects (templates, scripts etc.) visit the Marketplace in the upp
|
|||
<data name="PSMarketplace.Text" xml:space="preserve">
|
||||
<value>Visit Marketplace</value>
|
||||
</data>
|
||||
<data name="PSMenu.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>353, 82</value>
|
||||
<data name=">>ChkCodePS.Name" xml:space="preserve">
|
||||
<value>ChkCodePS</value>
|
||||
</data>
|
||||
<data name=">>PSMenu.Name" xml:space="preserve">
|
||||
<value>PSMenu</value>
|
||||
<data name=">>ChkCodePS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>PSMenu.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
<data name=">>ChkCodePS.Parent" xml:space="preserve">
|
||||
<value>PnlSettingsBottom</value>
|
||||
</data>
|
||||
<data name=">>ChkCodePS.ZOrder" xml:space="preserve">
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name=">>BtnDoPS.Name" xml:space="preserve">
|
||||
<value>BtnDoPS</value>
|
||||
</data>
|
||||
<data name=">>BtnDoPS.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>BtnDoPS.Parent" xml:space="preserve">
|
||||
<value>PnlSettingsBottom</value>
|
||||
</data>
|
||||
<data name=">>BtnDoPS.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="PnlSettingsBottom.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Bottom</value>
|
||||
</data>
|
||||
<data name="PnlSettingsBottom.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>367, 779</value>
|
||||
</data>
|
||||
<data name="PnlSettingsBottom.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>716, 58</value>
|
||||
</data>
|
||||
<data name="PnlSettingsBottom.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>114</value>
|
||||
</data>
|
||||
<data name=">>PnlSettingsBottom.Name" xml:space="preserve">
|
||||
<value>PnlSettingsBottom</value>
|
||||
</data>
|
||||
<data name=">>PnlSettingsBottom.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>PnlSettingsBottom.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>PnlSettingsBottom.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="ChkCodePS.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
|
||||
<value>Bottom, Left</value>
|
||||
|
@ -980,30 +1124,6 @@ To obtain new objects (templates, scripts etc.) visit the Marketplace in the upp
|
|||
<data name=">>BtnDoPS.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="PnlSettingsBottom.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Bottom</value>
|
||||
</data>
|
||||
<data name="PnlSettingsBottom.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>367, 779</value>
|
||||
</data>
|
||||
<data name="PnlSettingsBottom.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>716, 58</value>
|
||||
</data>
|
||||
<data name="PnlSettingsBottom.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>114</value>
|
||||
</data>
|
||||
<data name=">>PnlSettingsBottom.Name" xml:space="preserve">
|
||||
<value>PnlSettingsBottom</value>
|
||||
</data>
|
||||
<data name=">>PnlSettingsBottom.Type" xml:space="preserve">
|
||||
<value>System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name=">>PnlSettingsBottom.Parent" xml:space="preserve">
|
||||
<value>$this</value>
|
||||
</data>
|
||||
<data name=">>PnlSettingsBottom.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
</data>
|
||||
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
|
|
18
src/Privatezilla/Properties/Resources.Designer.cs
generated
18
src/Privatezilla/Properties/Resources.Designer.cs
generated
|
@ -1398,15 +1398,6 @@ namespace Privatezilla.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sucht eine lokalisierte Zeichenfolge, die Do you really want to revert all selected settings to Windows 10 default state?" ähnelt.
|
||||
/// </summary>
|
||||
internal static string statusDoSettings {
|
||||
get {
|
||||
return ResourceManager.GetString("statusDoSettings", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sucht eine lokalisierte Zeichenfolge, die Please wait ... ähnelt.
|
||||
/// </summary>
|
||||
|
@ -1479,6 +1470,15 @@ namespace Privatezilla.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sucht eine lokalisierte Zeichenfolge, die Do you really want to revert all selected settings to Windows 10 default state?" ähnelt.
|
||||
/// </summary>
|
||||
internal static string statusUndoSettings {
|
||||
get {
|
||||
return ResourceManager.GetString("statusUndoSettings", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sucht eine lokalisierte Zeichenfolge, die Welcome to the Modern Policy Editor, which allows you to apply group policies and custom settings in the form of PowerShell scripts and templates (bundled scripts).
|
||||
///
|
||||
|
|
|
@ -278,312 +278,414 @@ You can also follow me on
|
|||
</data>
|
||||
<data name="settingsAppsAccountInfo" xml:space="preserve">
|
||||
<value>Disable app access to account info</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsAppNotifications" xml:space="preserve">
|
||||
<value>Disable app notifications</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsAppNotificationsInfo" xml:space="preserve">
|
||||
<value>The Action Center in Windows 10 collects and shows notifications and alerts from traditional Windows applications and system notifications, alongside those generated from modern apps.\nNotifications are then grouped in the Action Center by app and time.\nThis setting will disable all notifications from apps and other senders in settings.</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsBackgroundApps" xml:space="preserve">
|
||||
<value>Disable apps running in background</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsBackgroundAppsInfo" xml:space="preserve">
|
||||
<value>Windows 10 apps have no more permission to run in the background so they can't update their live tiles, fetch new data, and receive notifications.</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsCalendar" xml:space="preserve">
|
||||
<value>Disable app access to calendar</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsCall" xml:space="preserve">
|
||||
<value>Disable app access to call</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsCallHistory" xml:space="preserve">
|
||||
<value>Disable app access to call history</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsCamera" xml:space="preserve">
|
||||
<value>Disable app access to camera</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsCellularData" xml:space="preserve">
|
||||
<value>Disable app access to cellular data</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsCellularDataInfo" xml:space="preserve">
|
||||
<value>Some Windows 10 devices have a SIM card and/or eSIM in them that lets you connect to a cellular data network (aka: LTE or Broadband), so you can get online in more places by using a cellular signal.\nIf you do not want any apps to be allowed to use cellular data, you can disable it with this setting.</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsContacts" xml:space="preserve">
|
||||
<value>Disable app access to contacts</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsDiagnosticInformation" xml:space="preserve">
|
||||
<value>Disable app access to diagnostics</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsDocuments" xml:space="preserve">
|
||||
<value>Disable app access to documents</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsEmail" xml:space="preserve">
|
||||
<value>Disable app access to email</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsEyeGaze" xml:space="preserve">
|
||||
<value>Disable app access to eye tracking</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsEyeGazeInfo" xml:space="preserve">
|
||||
<value>Disable app access to eye-gaze-based interaction</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsFileSystem" xml:space="preserve">
|
||||
<value>Disable app access to file system</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsFileSystemInfo" xml:space="preserve">
|
||||
<value>This setting will disable app access to file system. Some apps may be restricted in their function or may no longer work at all.</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsMessaging" xml:space="preserve">
|
||||
<value>Disable app access to messaging</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsMicrophone" xml:space="preserve">
|
||||
<value>Disable app access to microphone</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsMotion" xml:space="preserve">
|
||||
<value>Disable app access to motion</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsNotification" xml:space="preserve">
|
||||
<value>Disable app access to notifications</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsOtherDevices" xml:space="preserve">
|
||||
<value>Disable app access to other devices</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsPictures" xml:space="preserve">
|
||||
<value>Disable app access to pictures</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsRadios" xml:space="preserve">
|
||||
<value>Disable app access to radios</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsTasks" xml:space="preserve">
|
||||
<value>Disable app access to tasks</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsTrackingApps" xml:space="preserve">
|
||||
<value>Disable tracking of app starts</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsTrackingAppsInfo" xml:space="preserve">
|
||||
<value>This allows you to quickly have access to your list of Most used apps both in the Start menu and when you search your device."</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsAppsVideos" xml:space="preserve">
|
||||
<value>Disable app access to videos</value>
|
||||
<comment>Settings > Apps</comment>
|
||||
</data>
|
||||
<data name="settingsBloatwareRemoveUWPAll" xml:space="preserve">
|
||||
<value>Remove all built-in apps</value>
|
||||
<comment>Settings > Bloatware</comment>
|
||||
</data>
|
||||
<data name="settingsBloatwareRemoveUWPAllInfo" xml:space="preserve">
|
||||
<value>This will remove all built-in apps except Microsoft Store.</value>
|
||||
<comment>Settings > Bloatware</comment>
|
||||
</data>
|
||||
<data name="settingsBloatwareRemoveUWPDefaults" xml:space="preserve">
|
||||
<value>Remove all built-in apps except defaults</value>
|
||||
<comment>Settings > Bloatware</comment>
|
||||
</data>
|
||||
<data name="settingsBloatwareRemoveUWPDefaultsInfo" xml:space="preserve">
|
||||
<value>This will remove all built-in apps except the following:\nMicrosoft Store\nApp Installer\nCalendar\nMail\nCalculator\nCamera\nSkype\nGroove Music\nMaps\nPaint 3D\nYour Phone\nPhotos\nSticky Notes\nWeather\nXbox</value>
|
||||
<comment>Settings > Bloatware</comment>
|
||||
</data>
|
||||
<data name="settingsCortanaDisableBing" xml:space="preserve">
|
||||
<value>Disable Bing in Windows Search</value>
|
||||
<comment>Settings > Cortana</comment>
|
||||
</data>
|
||||
<data name="settingsCortanaDisableBingInfo" xml:space="preserve">
|
||||
<value>Windows 10, by default, sends everything you search for in the Start Menu to their servers to give you results from Bing search.</value>
|
||||
<comment>Settings > Cortana</comment>
|
||||
</data>
|
||||
<data name="settingsCortanaDisableCortana" xml:space="preserve">
|
||||
<value>Disable Cortana</value>
|
||||
<comment>Settings > Cortana</comment>
|
||||
</data>
|
||||
<data name="settingsCortanaDisableCortanaInfo" xml:space="preserve">
|
||||
<value>Cortana is Microsoft's virtual assistant that comes integrated into Windows 10.\nThis setting will disable Cortana permanently and prevent it from recording and storing your search habits and history.</value>
|
||||
<comment>Settings > Cortana</comment>
|
||||
</data>
|
||||
<data name="settingsCortanaUninstallCortana" xml:space="preserve">
|
||||
<value>Uninstall Cortana</value>
|
||||
<comment>Settings > Cortana</comment>
|
||||
</data>
|
||||
<data name="settingsCortanaUninstallCortanaInfo" xml:space="preserve">
|
||||
<value>This will uninstall the new Cortana app on Windows 10, version 2004.</value>
|
||||
<comment>Settings > Cortana</comment>
|
||||
</data>
|
||||
<data name="settingsDefenderDisableSmartScreenStore" xml:space="preserve">
|
||||
<value>Disable SmartScreen for Store Apps</value>
|
||||
<comment>Settings > Defender</comment>
|
||||
</data>
|
||||
<data name="settingsDefenderDisableSmartScreenStoreInfo" xml:space="preserve">
|
||||
<value>Windows Defender SmartScreen Filter helps protect your device by checking web content (URLs) that Microsoft Store apps use.</value>
|
||||
<comment>Settings > Defender</comment>
|
||||
</data>
|
||||
<data name="settingsEdeAutoFillCredit" xml:space="preserve">
|
||||
<value>Disable AutoFill for credit cards</value>
|
||||
<comment>Settings > Edge</comment>
|
||||
</data>
|
||||
<data name="settingsEdeAutoFillCreditInfo" xml:space="preserve">
|
||||
<value>Microsoft Edge's AutoFill feature lets users auto complete credit card information in web forms using previously stored information.</value>
|
||||
<comment>Settings > Edge</comment>
|
||||
</data>
|
||||
<data name="settingsEdgeBackground" xml:space="preserve">
|
||||
<value>Prevent Edge running in background</value>
|
||||
<comment>Settings > Edge</comment>
|
||||
</data>
|
||||
<data name="settingsEdgeBackgroundInfo" xml:space="preserve">
|
||||
<value>On the new Chromium version of Microsoft Edge, extensions and other services can keep the browser running in the background even after it's closed.</value>
|
||||
<comment>Settings > Edge</comment>
|
||||
</data>
|
||||
<data name="settingsEdgeBlockEdgeRollout" xml:space="preserve">
|
||||
<value>Block Installation of New Microsoft Edge</value>
|
||||
<comment>Settings > Edge</comment>
|
||||
</data>
|
||||
<data name="settingsEdgeBlockEdgeRolloutInfo" xml:space="preserve">
|
||||
<value>This will block Windows 10 Update Force Installing of the new Chromium-based Microsoft Edge web browser if it's not installed already on the device.</value>
|
||||
<comment>Settings > Edge</comment>
|
||||
</data>
|
||||
<data name="settingsEdgeDisableSync" xml:space="preserve">
|
||||
<value>Disable synchronization of data</value>
|
||||
<comment>Settings > Edge</comment>
|
||||
</data>
|
||||
<data name="settingsEdgeDisableSyncInfo" xml:space="preserve">
|
||||
<value>This setting will disable synchronization of data using Microsoft sync services.</value>
|
||||
<comment>Settings > Edge</comment>
|
||||
</data>
|
||||
<data name="settingsGamingGameBar" xml:space="preserve">
|
||||
<value>Disable Game Bar features</value>
|
||||
<comment>Settings > Gaming</comment>
|
||||
</data>
|
||||
<data name="settingsGamingGameBarInfo" xml:space="preserve">
|
||||
<value>This setting will disable the Windows Game Recording and Broadcasting.</value>
|
||||
<comment>Settings > Gaming</comment>
|
||||
</data>
|
||||
<data name="settingsGamingGameBarInfoInfo" xml:space="preserve">
|
||||
<value>This will turn off tailored experiences with relevant tips and recommendations by using your diagnostics data. Many people would call this telemetry, or even spying.</value>
|
||||
<comment>Settings > Gaming</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyBlockSuggestedApps" xml:space="preserve">
|
||||
<value>Block suggested apps in Start</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyBlockSuggestedAppsInfo" xml:space="preserve">
|
||||
<value>This will block the Suggested Apps that occasionally appear on the Start menu.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDiagnosticData" xml:space="preserve">
|
||||
<value>Prevent using diagnostic data</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDiagnosticDataInfo" xml:space="preserve">
|
||||
<value>This will turn off tailored experiences with relevant tips and recommendations by using your diagnostics data. Many people would call this telemetry, or even spying.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableAds" xml:space="preserve">
|
||||
<value>Disable Advertising ID for Relevant Ads</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableAdsInfo" xml:space="preserve">
|
||||
<value>Windows 10 comes integrated with advertising. Microsoft assigns a unique identificator to track your activity in the Microsoft Store and on UWP apps to target you with relevant ads.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableBiometrics" xml:space="preserve">
|
||||
<value>Disable Windows Hello Biometrics</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableBiometricsInfo" xml:space="preserve">
|
||||
<value>Windows Hello biometrics lets you sign in to your devices, apps, online services, and networks using your face, iris, or fingerprint.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableCEIP" xml:space="preserve">
|
||||
<value>Disable Customer Experience Program</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableCEIPInfo" xml:space="preserve">
|
||||
<value>The Customer Experience Improvement Program (CEIP) is a feature that comes enabled by default on Windows 10, and it secretly collects and submits hardware and software usage information to Microsoft.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableCompTelemetry" xml:space="preserve">
|
||||
<value>Disable Compatibility Telemetry</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableCompTelemetryInfo" xml:space="preserve">
|
||||
<value>This process is periodically collecting a variety of technical data about your computer and its performance and sending it to Microsoft for its Windows Customer Experience Improvement Program.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableFeedback" xml:space="preserve">
|
||||
<value>Do not show feedback notifications</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableFeedbackInfo" xml:space="preserve">
|
||||
<value>Windows 10 may also pop up from time to time and ask for feedback.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableHEIP" xml:space="preserve">
|
||||
<value>Disable Help Experience Program</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableHEIPInfo" xml:space="preserve">
|
||||
<value>The Help Experience Improvement Program (HEIP) collects and send to Microsoft information about how you use Windows Help. This might reveal what problems you are having with your computer.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableLocation" xml:space="preserve">
|
||||
<value>Disable Location tracking</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableLocationInfo" xml:space="preserve">
|
||||
<value>Wherever you go, Windows 10 knows you're there. When Location Tracking is turned on, Windows and its apps are allowed to detect the current location of your computer or device.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableMSExperiments" xml:space="preserve">
|
||||
<value>Disable Settings Experimentation</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableMSExperimentsInfo" xml:space="preserve">
|
||||
<value>In certain builds of Windows 10, users could let Microsoft experiment with the system to study user preferences or device behavior. This allows Microsoft to “conduct experiments” with the settings on your PC and should be disabled with this setting.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableTelemetry" xml:space="preserve">
|
||||
<value>Disable Telemetry</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableTelemetryInfo" xml:space="preserve">
|
||||
<value>This will prevent Windows from collecting usage information and setting diagnostic data to Basic, which is the lowest level available for all consumer versions of Windows 10.\nThe services diagtrack & dmwappushservice will also be disabled.\nNOTE: Diagnostic Data must be set to Full to get preview builds from Windows-Insider-Program!</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableTimeline" xml:space="preserve">
|
||||
<value>Disable Timeline feature</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableTimelineInfo" xml:space="preserve">
|
||||
<value>This collects a history of activities you've performed, including files you've opened and web pages you've viewed in Edge.\nIf Timeline isn’t for you, or you simply don’t want Windows 10 collecting your sensitive activities and information, you can disable Timeline completely with this setting.\nNote: A system reboot is required for the changes to take effect.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableTips" xml:space="preserve">
|
||||
<value>Disable Windows Tips</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableTipsInfo" xml:space="preserve">
|
||||
<value>You will no longer see Windows Tips, e.g. Spotlight and Consumer Features, Feedback Notifications etc.</value>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableTipsLockScreen" xml:space="preserve">
|
||||
<value>Disable Ads and Links on Lock Screen</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableTipsLockScreenInfo" xml:space="preserve">
|
||||
<value>This setting will set your lock screen background options to a picture and turn off tips, fun facts and tricks from Microsoft.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableWiFi" xml:space="preserve">
|
||||
<value>Disable Wi-Fi Sense</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyDisableWiFiInfo" xml:space="preserve">
|
||||
<value>You should at least stop your PC from sending your Wi-Fi password.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyGetMoreOutOfWindows" xml:space="preserve">
|
||||
<value>Disable Get Even More Out of Windows</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyGetMoreOutOfWindowsInfo" xml:space="preserve">
|
||||
<value>Recent Windows 10 versions occasionally display a nag screen "Get Even More Out of Windows" when you sign-in to your user account. If you find it annoying, you can disable it with this setting.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyHandwritingData" xml:space="preserve">
|
||||
<value>Prevent using handwriting data</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyHandwritingDataInfo" xml:space="preserve">
|
||||
<value>If you don’t want Windows to know and record all unique words that you use, like names and professional jargon, just enable this setting.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyInstalledApps" xml:space="preserve">
|
||||
<value>Block automatic Installation of apps</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyInstalledAppsInfo" xml:space="preserve">
|
||||
<value>When you sign-in to a new Windows 10 profile or device for the first time, chance is that you notice several third-party applications and games listed prominently in the Start menu.\nThis setting will block automatic Installation of suggested Windows 10 apps.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyInventoryCollector" xml:space="preserve">
|
||||
<value>Disable Inventory Collector</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacyInventoryCollectorInfo" xml:space="preserve">
|
||||
<value>The Inventory Collector inventories applications files devices and drivers on the system and sends the information to Microsoft. This information is used to help diagnose compatibility problems.\nNote: This setting setting has no effect if the Customer Experience Improvement Program is turned off. The Inventory Collector will be off.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacySuggestedContent" xml:space="preserve">
|
||||
<value>Block suggested content in Settings app</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsPrivacySuggestedContentInfo" xml:space="preserve">
|
||||
<value>To help new Windows 10 users to learn new features of Windows 10, Microsoft has started showing suggested content via a huge banner in Windows 10 Setting Apps.</value>
|
||||
<comment>Settings > Privacy</comment>
|
||||
</data>
|
||||
<data name="settingsSecurityDisablePassword" xml:space="preserve">
|
||||
<value>Disable password reveal button</value>
|
||||
<comment>Settings > Security</comment>
|
||||
</data>
|
||||
<data name="settingsSecurityDisablePasswordInfo" xml:space="preserve">
|
||||
<value>The password reveal button can be used to display an entered password and should be disabled with this setting.</value>
|
||||
<comment>Settings > Security</comment>
|
||||
</data>
|
||||
<data name="settingsSecurityWindowsDRM" xml:space="preserve">
|
||||
<value>Disable DRM in Windows Media Player</value>
|
||||
<comment>Settings > Security</comment>
|
||||
</data>
|
||||
<data name="settingsSecurityWindowsDRMInfo" xml:space="preserve">
|
||||
<value>If the Windows Media Digital Rights Management should not get access to the Internet (or intranet) for license acquisition and security upgrades, you can prevent it with this setting.</value>
|
||||
<comment>Settings > Security</comment>
|
||||
</data>
|
||||
<data name="settingsUpdatesBlockMajorUpdates" xml:space="preserve">
|
||||
<value>Block major Windows updates</value>
|
||||
<comment>Settings > Updates</comment>
|
||||
</data>
|
||||
<data name="settingsUpdatesBlockMajorUpdatesInfo" xml:space="preserve">
|
||||
<value>This setting called "TargetReleaseVersionInfo" prevents Windows 10 feature updates from being installed until the specified version reaches the end of support.\nIt will specify your currently used Windows 10 version as the target release version of Windows 10 that you wish the system to be on (supports only Pro and enterprise versions).</value>
|
||||
<comment>Settings > Updates</comment>
|
||||
</data>
|
||||
<data name="settingsUpdatesDisableUpdates" xml:space="preserve">
|
||||
<value>Disable forced Windows updates</value>
|
||||
<comment>Settings > Updates</comment>
|
||||
</data>
|
||||
<data name="settingsUpdatesDisableUpdatesInfo" xml:space="preserve">
|
||||
<value>This will notify when updates are available, and you decide when to install them.</value>
|
||||
<comment>Settings > Updates</comment>
|
||||
</data>
|
||||
<data name="settingsUpdatesUpdateSharing" xml:space="preserve">
|
||||
<value>Disable Windows updates sharing</value>
|
||||
<comment>Settings > Updates</comment>
|
||||
</data>
|
||||
<data name="settingsUpdatesUpdateSharingInfo" xml:space="preserve">
|
||||
<value>Windows 10 lets you download updates from several sources to speed up the process of updating the operating system. This will disable sharing your files by others and exposing your IP address to random computers.</value>
|
||||
<comment>Settings > Updates</comment>
|
||||
</data>
|
||||
<data name="statusDoPSApply" xml:space="preserve">
|
||||
<value>Apply</value>
|
||||
|
@ -591,9 +693,6 @@ You can also follow me on
|
|||
<data name="statusDoPSProcessing" xml:space="preserve">
|
||||
<value>Processing</value>
|
||||
</data>
|
||||
<data name="statusDoSettings" xml:space="preserve">
|
||||
<value>Do you really want to revert all selected settings to Windows 10 default state?"</value>
|
||||
</data>
|
||||
<data name="statusDoWait" xml:space="preserve">
|
||||
<value>Please wait ...</value>
|
||||
</data>
|
||||
|
@ -618,6 +717,9 @@ You can also follow me on
|
|||
<data name="statusSuccessConfigure" xml:space="preserve">
|
||||
<value>Configured</value>
|
||||
</data>
|
||||
<data name="statusUndoSettings" xml:space="preserve">
|
||||
<value>Do you really want to revert all selected settings to Windows 10 default state?"</value>
|
||||
</data>
|
||||
<data name="TxtPSInfo" xml:space="preserve">
|
||||
<value>Welcome to the Modern Policy Editor, which allows you to apply group policies and custom settings in the form of PowerShell scripts and templates (bundled scripts).
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue