-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwintest.html
55 lines (49 loc) · 2.21 KB
/
wintest.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
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en-us">
<head>
<script>
function CopyToClipboard() {
var elem = event.target.previousElementSibling;
/* Copy the text inside the text field */
navigator.clipboard.writeText(elem.textContent);
/* Alert the copied text */
//alert("Copied the text: " + elem.textContent);
console.log("'" + elem.textContent + "' sent to clipboard")
}
</script>
</head>
<body>
<h2>TEST DEBIT POUR WINDOWS</h2>
<h3><strong>Lancer 'powershell'</strong></h3>
<p>il y a plusieurs méthodes dont:</p>
<ul>
<li>en cliquant sur la loupe (recherche) en bas de la barre Windows et saisir 'powershell'</li>
<li>en appuyant sur la touche ⊞ (touche Windows ) et la touche X en meme temps et choisir 'powershell' dans le
menu qui apparait.</li>
</ul>
<p>Dans la fenêtre qui apparait (fond bleu en général) ,saisir ou copier/coller les commandes
suivantes:</p>
<p><span style="color: #0000ff;">Get-NetAdapter</span>
<button onclick="CopyToClipboard()">copier</button>
</p>
<p><span style="color: #0000ff;">Get-NetAdapterHardwareInfo</span>
<button onclick="CopyToClipboard()">copier</button>
</p>
<p>et poster leurs résultats.</p>
<h3><strong>Ensuite faire un test avec NSpeed</strong>:</h3>
<p>Dans la meme fenêtre:</p>
<p><span style="color: #0000ff;">wget -outfile nspeed.exe
https://dl.nspeed.app/nspeed-client/latest/nspeed_windows_amd64.exe </span> <button
onclick="CopyToClipboard()">copier</button>
</p>
<p>cela va télécharger le programme nspeed qui permet de faire des mesures de débit en ligne de
commande.</p>
<p>Puis nous donner les résultats de:</p>
<p><span style="color: #0000ff;">./nspeed.exe -cpu get http://bouygues.testdebit.info/10G/10G.iso</span> <button
onclick="CopyToClipboard()">copier</button>
</p>
<p><span style="color: #0000ff;">./nspeed.exe -cpu get -n 4 http://bouygues.testdebit.info/10G/10G.iso</span>
<button onclick="CopyToClipboard()">copier</button>
</p>
</body>
</html>