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" |
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 | |
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] |
//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 | |
#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 3\nDigite um numero:"); | |
//fflush(stdin); | |
scanf("%d",&Numero); |
//https://gist.github.com/FelipeGrijo | |
#include <stdio.h> | |
int main() | |
{ | |
int Numero; | |
printf("Exercicio 4\nDigite um numero:"); | |
//fflush(stdin); | |
scanf("%d",&Numero); |
//https://gist.github.com/FelipeGrijo | |
#include <stdio.h> | |
int main() | |
{ | |
int Numero; | |
printf("Exercicio 5\nDigite um numero:"); | |
//fflush(stdin); | |
scanf("%d",&Numero); |
//https://gist.github.com/FelipeGrijo | |
#include <stdio.h> | |
int main() | |
{ | |
float Altura,AlturaxPeso=0.0; | |
char Sexo; | |
printf("Exercicio 6\nDigite a sua altura (Ex.: 1.75):"); | |
fflush(stdin); |
//https://gist.github.com/FelipeGrijo | |
#include <stdio.h> | |
int main() | |
{ | |
int Num1,Num2,Num3=0; | |
printf("Exercicio 7\nDigite 3 numeros.\nPrimeiro numero:"); | |
scanf("%d",&Num1); |