Quantcast
Channel: Uly.me
Browsing latest articles
Browse All 38 View Live

Uptime in Windows

Here’s how to find uptime in Windows servers. Go to “Start” -> “Run”. Write “CMD” and press “Enter” key. net statistics server # or net stats srv

View Article


Windows + Tab

Found another gem to display all Windows by using … Windows + Tab

View Article


GCP Compute Disks Move

Here’s how to move a GCP disk between zones. Make sure disk is detached from instance.Use the GCloud Disk Move command. # Detach disk from instance gcloud compute instances detach-disk server...

View Article

RFC 1918

Here’s the original document published back in February 1996 detailing the allocation for private internet addresses. The Internet Assigned Numbers Authority (IANA) has reserved the following three...

View Article

Excel Delete Blank Rows

Here’s how to delete blank rows in Excel.

View Article


Mac OS Catalina

I’ve updated my system to the latest Mac OS 10.15.1 codenamed Catalina. Well, it broke a couple of apps that I use regularly, Audacity and OBS. There are currently no updates from Audacity. However,...

View Article

FFMPEG Convert TS to MP4

If you have video files that are formatted in MPEG-2, video files with a .m2ts extension, you can convert them to MP4 using ffmpeg. ffmpeg -i input.ts -c:v libx264 -c:a aac output.mp4 The video is...

View Article

Splunk Search for Tanium Clients

Here’s the Splunk search for Tanium clients reporting to the Tanium server. "data.jsonPayload.rule_details.direction"=EGRESS "data.jsonPayload.connection.src_ip"="10.0.0.1"...

View Article


Logitech K811 Page Up and Down

I’ve been using this keyboard for a few years, but never knew how to use page and page down. It’s … fn + up arrow = page up fn + down arrow = page down

View Article


MySQL Select Like

Here’s how to perform SQL searches using the like operator. # Format SELECT column1, column2 FROM table_name WHERE column LIKE pattern; # Search for an entry starting with a 'joe.' SELECT...

View Article
Browsing latest articles
Browse All 38 View Live