Friday, March 19, 2021

Foticlient Uninstall in Windows 10

 Foticlient


wmic product where "name like 'Forti%%'" call uninstall /nointeractive

Sunday, March 17, 2019

SQL Oracle Command

select name_id, company from name where name_id in ('182899','182900','182905','183370','184118','184120','184689','185405','185761','186116','186167','186204','186374','186903','187117','187118','187652','187672','187888','188682','188869','189278','189616','189884','190150','190170','190180','190190','190197','190879','191144','191487','191903','192121','192635','192897','192899','193621','193634','193650','193880','193900','193999','194158','194196','194234','194238','194242','194441','194590','194644','194755','195179','195183','195184','195188','195384','195388','195481','195489','195774','196125','196151','196154','196559','196593','196622','196640','196935','197657','197867','198246','198248','198310','198383','198690','198946','198980','199314','200510','200515','200618','200779','200893','201412','201429','201431','201631','201832','201851','69712')

Wednesday, February 6, 2019

Oracle Password

- sqlplus opera/opera@opera 
- update application$_user set app_password='BETTERTHANV6' where app_user='SUPERVISOR';
 - commit;
 - exit


SQL> update opera.application_user set app_password='BETTERTHANV6' where app_user='SUPERVISOR';

 

 SQL> update opera.application_user set account_locked_out_yn='N' where app_user='SUPERVISOR';



        SQL> update opera.application_user set lockout_date=NULL where app_user='SUPERVISOR';

 SQL>commit;


 SQL>exit;

Saturday, December 15, 2018

Windows Activation

How To Fix "An Unauthorized Change Was Made To Windows  Server 2008" Error

In my case, the problem was with the Windows Activation. The activation of my windows had ended (3 Year Activation). But it was very important for me to continue with this copy of Windows Server 2008, as it was not feasible for me to switch this Live Server serving Dozens of clients.
So, in order to get myself into the Windows Server 2008, I used the below mentioned steps to fix the issue with my Windows Activation.
1) Click the option that launches an Internet Browser (on the error screen which reads Learn More Online)

2) Type: %windir%\system32 into the address field (To access the Windows System32 directory)

3) Find the file cmd.exe

4) Right-click on cmd.exe and select Run as Administrator

5) Type the following command on the Command Prompt: 
cscript %windir%\System32\slmgr.vbs /ilc %windir%\System32\licensing\ppdlic\Security-Licensing-SLC-ppdlic.xrm-ms)
6) Hit the Enter key

7) Reboot twice.

Conclusion

You need to reboot your machine Twice in order to fix this Issue. After following the above steps, I was able to fix the issue with my Windows Activation. But, if the issue is not solved by following the above steps, then you need to check if your Antivirus is causing this issue. If so, please uninstall the Antivirus software from your machine. Hope this solves the Issue.

Monday, November 19, 2018

RMAN commands

rman target sys/opera10g
show all;
crosscheck backup;
delete noprompt expired backup;
crosscheck archivelog all;
delete noprompt expired archivelog all;

Friday, October 19, 2018

PPTP Bruit Force

/ip firewall filter
add action=drop chain=input comment="pptp brute force drop 1/4 - complete comunication DROP" disabled=no \
src-address-list=pptp_blacklist_DROP
add action=add-dst-to-address-list address-list=pptp_blacklist_DROP address-list-timeout=10m chain=output comment="pptp brute force drop 2/4" \
content="bad username or password" disabled=no dst-address-list=pptp_blacklist_stage_2 protocol=gre
add action=add-dst-to-address-list address-list=pptp_blacklist_stage_2 address-list-timeout=1m chain=output comment="pptp brute force drop 3/4" \
content="bad username or password" disabled=no dst-address-list=pptp_blacklist_stage_1 protocol=gre
add action=add-dst-to-address-list address-list=pptp_blacklist_stage_1 address-list-timeout=1m chain=output comment="pptp brute force drop 4/4" \
content="bad username or password" disabled=no protocol=gre