Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

Commit 9c9ea2b

Browse files
committed
SignTool 1.3.3
added `.sys` file support
1 parent fd2b65b commit 9c9ea2b

21 files changed

+29
-3
lines changed

.vs/SignTool/v16/.suo

0 Bytes
Binary file not shown.

.vs/slnx.sqlite

12 KB
Binary file not shown.

SignTool/SignTool.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ private void Form1_Load(object sender, EventArgs e)
2424
progressBar.Visible = false;
2525
FilesListBox.Items.Clear();
2626
logtxt.Clear();
27-
statusLabel.Text = "[INFO] Welcome to SignTool version 1.3.2";
27+
statusLabel.Text = "[INFO] Welcome to SignTool version 1.3.3";
2828
}
2929
#endregion
3030

@@ -66,7 +66,7 @@ private void AddFolder_Click(object sender, EventArgs e)
6666
{
6767
try
6868
{
69-
var files = GetFiles(folderDialog.SelectedPath, "*.exe;*.dll", SearchOption.AllDirectories);
69+
var files = GetFiles(folderDialog.SelectedPath, "*.exe;*.dll;*.sys", SearchOption.AllDirectories);
7070
foreach (string fileName in files)
7171
{
7272
FilesListBox.Items.Add(fileName, true);
@@ -84,7 +84,7 @@ private void AddFile_Click(object sender, EventArgs e)
8484

8585
openFile = new OpenFileDialog
8686
{
87-
Filter = "Executables|*.exe;*.dll",
87+
Filter = "Executables|*.exe;*.dll;*.sys",
8888
Multiselect = true
8989
};
9090
if (openFile.ShowDialog() == DialogResult.OK)

SignTool/bin/Debug/SignTool.exe

29 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
5+
</startup>
6+
</configuration>

SignTool/bin/Debug/SignTool.pdb

39.5 KB
Binary file not shown.

SignTool/bin/Release/SignTool.exe

-1.31 KB
Binary file not shown.

SignTool/bin/Release/SignTool.pdb

0 Bytes
Binary file not shown.
-98 Bytes
Binary file not shown.
180 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)