-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathINSTALL_NOTES_Windows.html
More file actions
93 lines (93 loc) · 3.99 KB
/
INSTALL_NOTES_Windows.html
File metadata and controls
93 lines (93 loc) · 3.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>datatools</title>
<link rel="stylesheet" href="https://caltechlibrary.github.io/css/site.css">
<link rel="stylesheet" href="https://media.library.caltech.edu/cl-webcomponents/css/code-blocks.css">
<script type="module" src="https://media.library.caltech.edu/cl-webcomponents/copyToClipboard.js"></script>
<script type="module" src="https://media.library.caltech.edu/cl-webcomponents/footer-global.js"></script>
</head>
<body>
<header>
<a href="https://library.caltech.edu"><img src="https://media.library.caltech.edu/assets/caltechlibrary-logo.png" alt="Caltech Library logo"></a>
</header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="index.html">README</a></li>
<li><a href="LICENSE">LICENSE</a></li>
<li><a href="INSTALL.html">INSTALL</a></li>
<li><a href="user_manual.html">User Manual</a></li>
<li><a href="about.html">About</a></li>
<li><a href="search.html">Search</a></li>
<li><a href="https://github.com/caltechlibrary/datatools">GitHub</a></li>
</ul>
</nav>
<section>
<p>Installing an unsigned executable on Windows can also pose security
risks, as Windows has built-in mechanisms to protect users from
potentially harmful software. Here’s a general guide on how to do
it:</p>
<h3 id="steps-to-install-an-unsigned-executable-on-windows">Steps to
Install an Unsigned Executable on Windows</h3>
<ol type="1">
<li><p><strong>Download the Executable</strong>: Download the unsigned
executable file you want to install from a trusted source.</p></li>
<li><p><strong>Locate the File</strong>: Use File Explorer to locate the
downloaded file, which is often in the <code>Downloads</code> folder
unless you specified a different location.</p></li>
<li><p><strong>Attempt to Open the File</strong>: Double-click the file
to open it. Windows may show a warning that the file is not commonly
downloaded and could harm your computer.</p></li>
<li><p><strong>Override Security Settings</strong>:</p>
<ul>
<li><strong>Option 1: Run Anyway</strong>
<ul>
<li>When you see the warning, click on <code>More info</code> in the
dialog box.</li>
<li>A new option will appear to <code>Run anyway</code>. Click this to
proceed with the installation.</li>
</ul></li>
<li><strong>Option 2: Disable Windows Defender SmartScreen
(Temporarily)</strong>
<ul>
<li>Open the Start menu and go to <code>Settings</code>.</li>
<li>Navigate to <code>Update & Security</code> >
<code>Windows Security</code> >
<code>App & browser control</code>.</li>
<li>Under <code>Check apps and files</code>, select <code>Off</code>.
This will disable SmartScreen temporarily.</li>
<li>Try running the executable again.</li>
<li>Remember to turn SmartScreen back on after installation for
continued protection.</li>
</ul></li>
</ul></li>
<li><p><strong>Use Command Prompt (Advanced Users)</strong>: If the
above methods don’t work, you can use the Command Prompt to run the
executable directly:</p>
<ul>
<li>Open Command Prompt as an administrator.</li>
<li>Navigate to the directory where the file is located using the
<code>cd</code> command.</li>
<li>Run the file by typing its name and pressing Enter.</li>
</ul></li>
</ol>
<h3 id="important-considerations">Important Considerations</h3>
<ul>
<li><strong>Security Risks</strong>: Running unsigned executables can
expose your system to malware and other security risks. Only proceed if
you trust the source of the software.</li>
<li><strong>User Account Control (UAC)</strong>: UAC might prompt you
for permission to run the executable. Ensure you have administrative
rights to proceed.</li>
<li><strong>Antivirus Software</strong>: Your antivirus software might
also block unsigned executables. You may need to temporarily disable it
or add an exception for the file.</li>
</ul>
<p>If you’re unsure about any of these steps or the safety of the file,
it’s best to consult with someone who has more experience with Windows
or to contact the software developer for support.</p>
</section>
<footer-global></footer-global>
</body>
</html>