Blog

Computer - Male or Female

What gender your computer is? No scientific experiments has given the final results yet, but... Here you'll find some good reasons to believe why FEMALE is the right answer. No one but their creator understands their internal logic. The native language they use to communicate with other computers is incomprehensible to anyone else. Even your smallest mistakes are stored in long-term memory for later retrieval - when you're not expecting it. The message " Bad command or...

  • Posted on 1 January, 2022
  • by Administrator
  • No tags added.

Powershell - Connect to Sharepont Online (Office 365)

download/install Sharepoint Online Management Shell . set Powershell Execution Policy ( Set-ExecutionPolicy unresctricted )  run the followind Script $adminUPN=" YOUR_ADMIN_USER_EMAIL " $orgName=" YOUR_COMPANY_SHAREPOINT_NAME " $userCredential = Get-Credential -UserName $adminUPN -Message "Type the password." Connect-SPOService -Url "https://$orgName-admin.sharepoint.com" -Credential $userCredential

  • Posted on 15 August, 2017
  • by Administrator
  • powershell

pfSense - Add Static Routes to pfSense DHCP Clients

use OPTION 121 (OPTION 249 is deprecated) format = string convert subnet to hexadecimal (ex -> 255.255.255.0 -> /24 = 18 ) convert network to hexadecimal (ex -> 192.168.144.0 = c0:a8:90 :00) convert gateway to hexadecimal (ex -> 192.168.144.253 = c0:a8:90:fd ) concatenate string -> | Mask | Network | Gateway | = 18:c0:a8:90:c0:a8:90:fd if you need multiple Routes added this way, simply concatenate all Routes (as my personal...

  • Posted on 15 August, 2017
  • by Administrator
  • No tags added.

pfSense - WAN IP on diferent subnet than default Gateway

(tested on pfSense (2.1.5-RELEASE (i386)) ( my pfSense Forum post about this ) install Package Shellcmd to run the following comands on reboot (add static route to WAN) route add -net <GATEWAY IP /32> -iface <YOUR_INTERFACE_NAME> (ex ->bge0) route add default <GATEWAY IP>   install package Cron and run the follwing script (adjust IP's Directories to your personal situation)...

  • Posted on 14 August, 2017
  • by Administrator
  • No tags added.

Joomla - Reset Hits counter on Articles

In phpMyAdmin execute the following SQL command → UPDATE `TABLE-PREFIX_content` SET hits = 0

  • Posted on 14 August, 2017
  • by Administrator
  • No tags added.