↓
 

Software Effect Enterprises, Inc

  • Home
Home→Author SEEI - Page 25 << 1 2 … 23 24 25 26 27 … 29 30 >>

Author Archives: SEEI

Post navigation

<< 1 2 … 22 23 24 25 26 27 28 29 30 >>

Find out when Windows was installed

Software Effect Enterprises, Inc Posted on January 18, 2017 by SEEIFebruary 8, 2017

From a command line prompt: systeminfo | find /i “install date”  

Continue reading →
Posted in Windows

Batch File To Create Reverse Lookup Zone In Windows DNS

Software Effect Enterprises, Inc Posted on January 7, 2017 by SEEIJanuary 7, 2017

for /L %%A in (15,1,254) DO (     dnscmd /recordadd 6.9.10.in-addr.arpa %%A PTR office.seei.biz )

Continue reading →
Posted in Windows

3 command-line file conversion tools for Linux

Software Effect Enterprises, Inc Posted on October 20, 2016 by SEEIOctober 20, 2016

Pandoc Everyone I know who works with markup languages says Pandoc is the go-to utility for converting between those languages. And for good reason: Pandoc not only does some pretty nifty conversions, it’s fast, too. Have a file formatted with … Continue reading →

Posted in Centos, Fedora, Linux

Installing Google Chrome on Centos 7

Software Effect Enterprises, Inc Posted on October 12, 2016 by SEEIJune 16, 2017

Centos 7 Enable yum repository by logging in as root at a bash prompt, then cut/copy/paste the following: cat << EOF > /etc/yum.repos.d/google-chrome.repo [google-chrome] name=google-chrome – $basearch baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub EOF You will see the following [root@mycomputer ~]# cat … Continue reading →

Posted in Centos 6, Centos 7, Google Chrome

Enable LDAPS support in Zimbra

Software Effect Enterprises, Inc Posted on October 12, 2016 by SEEIOctober 12, 2016

Enabling LDAPS at installation time To enable LDAPS at installation time, change the port used by the LDAP server in the installation menu from 389 to 636. Enabling LDAPS after installation Modify the URL used by LDAP on all servers, … Continue reading →

Posted in Zimbra, Zimbra 7, Zimbra 8

Select Boot Kernel In Centos 7

Software Effect Enterprises, Inc Posted on October 10, 2016 by SEEIAugust 20, 2018

Update!! Use these instructions instead:  https://docs.fedoraproject.org/en-US/Fedora/23/html/System_Administrators_Guide/sec-Configuring_GRUB_2_Using_the_grubby_Tool.html       A typical CentOS 7 Linux system has multiple kernels. How many kernels you have in your CentOS systems depends on the configuration setting. Sometimes you might feel the need to change the … Continue reading →

Posted in Centos 7

How can I control how much data Netflix uses?

Software Effect Enterprises, Inc Posted on October 6, 2016 by SEEIOctober 6, 2016

Watching movies or TV shows on Netflix uses about 1 GB of data per hour for each stream of standard definition video, and up to 3 GB per hour for each stream of HD video. This can create headaches for … Continue reading →

Posted in Uncategorized

VB Script To List Members of AD Groups

Software Effect Enterprises, Inc Posted on October 6, 2016 by SEEIOctober 6, 2016

strScanGroups = “Domain Admins,Enterprise Admins,Schema Admins” strSMTPRelay = “relay.yourcompany.corp” strFrom = “Administrator@yourcompany.com” strTo = “helpdesk@yourcompany.com” Dim rootDSE, domainObject, adDomain, mailDomain Set rootDSE = GetObject(“LDAP://RootDSE”) domainContainer = rootDSE.Get(“defaultNamingContext”) Set domainObject = GetObject(“LDAP://” & domainContainer) Set fs = CreateObject (“Scripting.FileSystemObject”) Set outFile … Continue reading →

Posted in Active Directory

Carrier Tracking URLs

Software Effect Enterprises, Inc Posted on October 6, 2016 by SEEIOctober 6, 2016

UPS: http://wwwapps.ups.com/WebTracking/track?track=yes&trackNums=%1 UPS: http://wwwapps.ups.com/WebTracking/track?HTMLVersion=5.0&loc=en_US&Requester=UPSHome&trackNums=%1&track.x=Track FedEx: http://www.fedex.com/Tracking?tracknumbers=%1 FedEx: http://www.fedex.com/Tracking?action=track&tracknumbers=%1 FedEx: http://fedex.com/Tracking?action=track&tracknumber_list=%1&cntry_code=us FedEx: http://www.fedex.com/Tracking?ascend_header=1&clienttype=dotcom&cntry_code=us&language=english&tracknumbers=%1 USPS: https://tools.usps.com/go/TrackConfirmAction?qtc_tLabels1=%1 USPS: https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1=%1 USPS: http://trkcnfrm1.smi.usps.com/PTSInternetWeb/InterLabelInquiry.do?origTrackNum=%1 OnTrac: http://www.ontrac.com/trackingdetail.asp?tracking=%1 OnTrac: http://www.ontrac.com/tracking.asp?trackingres=submit&tracking_number=%1&trackBtn.x=18&trackBtn.y=12&trackBtn=trackingres_submit LaserShip: http://lasership.com/track/%1 LaserShip: (As XML) http://lasership.com/track/%1/xml LaserShip: http://www.lasership.com/track.php?track_number_input=%1 DHL US: http://www.dhl-usa.com/content/us/en/express/tracking.shtml?brand=DHL&AWB=%1 HDL Canada: http://international.dhl.ca/content/ca/en/express/tracking.shtml?brand=DHL&AWB=%1 DHL Global Mail: http://webtrack.dhlglobalmail.com/?trackingnumber=%1 TNT: http://www.tnt.com/webtracker/tracking.do?navigation=1&searchType=CON&respLang=en&genericSiteIdent=.&cons=%1

Continue reading →
Posted in Uncategorized

NagiosQL does not restart Nagios version 4.0.8

Software Effect Enterprises, Inc Posted on September 23, 2016 by SEEISeptember 23, 2016

  edit the file /var/www/nagiosql32/admin/verify.php  and change the line: $strCommandString = “[“.mktime().”] RESTART_PROGRAM;”.mktime(); to be $strCommandString = “[“.mktime().”] RESTART_PROGRAM;”.mktime().”\n”; also edit the file /var/www/nagiosql32/scripts/do_config.php  and change the line: $strCommandString = “[“.mktime().”] RESTART_PROGRAM;”.mktime(); to be $strCommandString = “[“.mktime().”] RESTART_PROGRAM;”.mktime().”\n”; H/T https://support.nagios.com/forum/viewtopic.php?f=7&t=24161

Continue reading →
Posted in Uncategorized

Post navigation

<< 1 2 … 22 23 24 25 26 27 28 29 30 >>
Powered By Rocky Linux
Powered By Rocky Linux
Let's Encrypt
Let's Encrypt

Recent Posts

  • Ubiquiti Controller and pfSense / netgate
  • Reboot Microtik router
  • Find largest files on disk drive
  • Octo Print and Sony Playstation Eye Camera
  • DNS Tests

Categories

  • Active Directory
  • Android
  • Apache
  • Apache 2.4
  • ASA
  • Brave Browser
  • Cacti
  • Centos
  • Centos 6
  • Centos 7
  • Centos 8
  • certificate
  • Cisco ASA
  • Cisco Switch
  • Dell
  • DHCP
  • Encryption
  • fail2ban
  • Fedora
  • Fedora 31
  • Fedora 36
  • Fedora 38
  • Fedora 40
  • Fedora 41
  • Fedora37
  • Firefox
  • firewalld
  • Gnome 3
  • Google Chrome
  • grub
  • httpd
  • Juniper
  • kvm
  • LetsEncrypt
  • LibreOffice
  • Libvirt
  • Linux
  • Mate
  • Mikrotik
  • MySQL
  • Nagios
  • named/bind
  • Networking
  • OctoPrint
  • OpenVAS/Greenbone
  • pfSense
  • PHP
  • postfix
  • Raspberry PI
  • Rocky Linux
  • Rocky Linux 9
  • Samba
  • sed
  • Signal Messenger
  • SNMP
  • SRX
  • ssh
  • swaks
  • Synology
  • tftp
  • Ubiqiti
  • Ubiquiti
  • Uncategorized
  • Unifi
  • vim
  • wifi
  • Windows
  • Windows 10
  • Windows 11
  • Windows 7
  • Windows Server
  • Windows Server
  • Windows Server 2016
  • Windows Server 2019
  • WordPress
  • Zimbra
  • Zimbra 7
  • Zimbra 8
  • Zimbra 9

Your IP Address

  • Powered by Find-IP.net
©2025 - Software Effect Enterprises, Inc - Weaver Xtreme Theme
↑