Para mudar o tempo em que o pc irá suspender, altere o valor 7200
.
Para fazer o cálculo, faça:
Hora(s) x 60 x 60.
Exemplo: 1 x 60 x 60 = 3600
Depois de x Horas o pc irá suspender.
//https://gist.github.com/FelipeGrijo | |
#include <stdio.h> | |
int main() | |
{ | |
int Numero; | |
printf("Exercicio 2\nDigite um numero:"); | |
//fflush(stdin); | |
scanf("%d",&Numero); |
//https://gist.github.com/FelipeGrijo | |
#include <stdio.h> | |
int main() | |
{ | |
int Numero; | |
printf("Exercicio 1\nDigite um numero:"); | |
//fflush(stdin); | |
scanf("%d",&Numero); |
;https://gist.github.com/FelipeGrijo | |
Windows Registry Editor Version 5.00 | |
; Change Extension's File Type | |
[HKEY_CURRENT_USER\Software\Classes\.jpg] | |
@="PhotoViewer.FileAssoc.Tiff" | |
; Change Extension's File Type | |
[HKEY_CURRENT_USER\Software\Classes\.jpeg] |
Para mudar o tempo em que o pc irá suspender, altere o valor 7200
.
Para fazer o cálculo, faça:
Hora(s) x 60 x 60.
Exemplo: 1 x 60 x 60 = 3600
Depois de x Horas o pc irá suspender.
# https://gist.github.com/FelipeGrijo | |
function MenuH | |
{ | |
param ( | |
[string]$Title = 'Verificar Hash de Arquivos' | |
) | |
Write-Host "$Title" | |
Write-Host "1: Ver" | |
Write-Host "2: Comparar" |