This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo on | |
cls | |
echo �Validando Licen�a para 180 Dias...� | |
CD\ | |
C: | |
cd C:\users\administrator | |
slmgr.vbs -rearm | |
:end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8 | |
Windows XP PRO Corporate serial number S/N: Key: MQPWW-PGVKX-YPMKG-8DH3G-KC8PW | |
windows xp home edition serial number S/N: 034634-262024-171505-828316-729010-413531-800424-400442 | |
Windows XP 64 serial number S/N: B2RBK-7KPT9-4JP6X-QQFWM-PJD6G | |
Windows XP serial number S/N: K6C2K-KY62K-DQR84-RD4QV-QB74Q | |
Windows XP Professional 64-bit Corporate Edition 5.2.3790.1830 serial number S/N: VCFQD-V9FX9-46WVH-K3CD4-4J3JM | |
Microsoft Windows XP Professional SP2 serial number S/N: YY8F2-3CKVQ-RKTRG-6JMDR-9DTG6 | |
Windows XP Professional Service Pack 1 sp1 serial number S/N: F46YY - 2R8VQ - R8GMY - 926VK - 6BQ73 | |
Windows XP Pro serial number S/N: KBWR7-76BD8-J7MDQ-KKG&C-V9Q2J |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[<MASTER."VALOR_PAGO"> - (<MASTER."VALOR_PAGO"> * (<MASTER."TAXA_ADMINISTRATIVA"> / 100))] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var | |
GrupoRodapeColaborador: Integer; | |
procedure GF_COLABORADOROnAfterPrint(Sender: TfrxComponent); | |
begin | |
GrupoRodapeColaborador := 0; | |
end; | |
procedure GF_COLABORADOROnBeforePrint(Sender: TfrxComponent); | |
begin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[<MASTER."QUANTIDADE"> * <MASTER."VALOR_UNITARIO">] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$path = "D:\trunk" | |
Get-ChildItem $path -Hidden -Recurse -Filter "__history" | Remove-Item -Force -Verbose -Recurse | |
Write-Host "Feito: __history" | |
Write-Host | |
Get-ChildItem $path -Hidden -Recurse -Filter "__recovery" | Remove-Item -Force -Verbose -Recurse | |
Write-Host "Feito: __recovery" | |
Write-Host |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
IIF(Length(<MASTER."CNPJ_CPF">) = 11, | |
FormatMaskText('000\.000\.000\-00;0;_', <MASTER."CNPJ_CPF">), | |
FormatMaskText('00\.000\.000\/0000\-00;0;_', <MASTER."CNPJ_CPF">), | |
) | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Salvar em crontab -e: | |
# Backup do banco de dados TROPICAL.fdb - 12:00 todo dia | |
0 12 * * * cd /ESTACAO/BANCODADOS && ./backup_banco_dados_tropical.sh | |
# Backup do banco de dados TROPICAL.fdb - 00:00 todo dia | |
0 0 * * * cd /ESTACAO/BANCODADOS && ./backup_banco_dados_tropical.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# google-drive-ocamlfuse | |
$ sudo add-apt-repository ppa:alessandro-strada/ppa | |
$ sudo apt update && sudo apt install google-drive-ocamlfuse | |
# To set your Google drive folder, launch the tool. | |
$ google-drive-ocamlfuse | |
# It’ll pop up a webpage in your default browser, prompting you to log in to your Google account. |