-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexe-return.html
43 lines (43 loc) · 878 Bytes
/
exe-return.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Miscellaneous EXE Return Code Values</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}
h1 {
text-align: center;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Miscellaneous EXE Return Code Values</h1>
<ul>
<li>0: Success</li>
<li>1: Unsuccessful Login Exit</li>
<li>2: Starting From New Location</li>
</ul>
</div>
</body>
</html>