Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

157 total results found

MsSQL - Set All User Tables to Simple on DEV/TEST Server

Database Toolset

/* This script is to set all of the user database to simple on a DEV/TEST server Use the @Update and set to 1 for updating or 0 default to ready only Created By: Steve Ling 2024/09/05 */ USE MASTER declare @isql varchar(2000), @dbname varchar...

Service - Add Installer and Setup

Visual Studio

Go to Solution Explorer and right-click on your project solution then go to the view designer then look at the design view then right-click on the design page and click on “add installer” and it will look like this:After adding the ProjectInstaller.cs you have...

Log4Net - Wrapper

Visual Studio

https://stackoverflow.com/questions/1028375/how-do-you-configure-and-enable-log4net-for-a-stand-alone-class-library-assembly

Windows 11 - Bypass Microsoft Account Requirement

Microsoft

Once on the following screen make sure you disconnect from the internet or have no internet connection and hit the "Shift-F10" keys to open a command prompt. Type this in the command prompt window "oobe\bypassnro" The computer will reboot Once you get t...

Windows - Time Zone and Language Group Policy

Microsoft

Configuring the time zone using Group Policy Supported operating systems: Windows 2003/XP and higher, up to and including Windows 10 and Windows Server 2016 (all versions and builds).Supported deployment methods: all, including direct (bare-metal) insta...

Microsoft - Add DNS GPO

Microsoft

use the settings in the group policy itself to do this. Computer Configuration > Policies > Administrative Templates > Network > DNS Client 

DataGrid - Working with Cells and Rows

Visual Studio

void dataGridView_CellValidating(object sender, DataGridViewCellValidatingEventArgs e) { // Ignore cell if it's not dirty if (dataGridView.isCurrentCellDirty) return; // Validate current cell. } void dataGridView_RowValidating(ob...

MsSQL - Export Stored Procedures and Views to Files

Database Toolset

Use the Generate Scripts tool in SSMS: Right Click Database in Object Explorer. Tasks -> Generate Scripts. If given the "tutorial" click Next. Select "Select specific database objects" and tick "Stored Procedures". Click Next. Choose export method. Like...

Linux - Samba Setup No Authentication

Linux

Step 1: Install Samba on Linux To get started out with Samba, install the Samba core packages including the client package: dnf install -y samba samba-common samba-client The command installs the packages specified along with the dependencies as displayed ...

Linux - RHeL Subscription

Linux

We encountered the error message ‘This system is not registered with an entitlement server, You can use “rhc” or “subscription-manager” to register’. On CentOS Stream 9 Linux system while trying to perform package installations. For RHEL, this usually is an in...

GPO - Administrative Templates (.admx) Windows 11/10/8.1

Microsoft

Downloads for all Windows 11/10/8.1 versions Instructions on installing ADMX Templates:1. Download and unzip the template's CAB or ZIP file. Sometimes the ZIP contains a CAB file inside.2. Copy *.admx files -> C:\Windows\PolicyDefinitions3. Copy admx\locale\*...

Linux - Setup FTP and sFTP Server on Raspberry PI

Raspberry PI

Introduction Are you looking to set up an FTP server on your Raspberry PI, Rocky, Ubuntu or Debian-based operating system? vsftpd is a reliable and secure solution that allows you to transfer files between your computer and a remote server. In this comprehen...

Windows - OLD Drivers

Microsoft

Here is a list of drivers that are lost:

RedHat - Install a Kubernetes Cluster on RHEL 9.x | Rocky 9.x: A Step-by-Step Guide

Linux

https://infotechys.com/install-a-kubernetes-cluster-on-rhel-9 https://www.youtube.com/watch?v=_ELvCuXO6y4 https://medium.com/weeklycloud/kubernetes-installation-on-rhel-9-d5629f2fa4f9 https://www.youtube.com/watch?v=vX2n05t0AQg&t=1782s Prerequisites Updat...

PiHole - Synology Configuration

Docker

This is to create a MAC vlan on you synology to bridge interfaces You will need to create the following folders from the main docker folder. mkdir -p /volume1/docker/pihole mkdir -p /volume1/docker/pihole/pihole mkdir -p /volume1/docker/pihole/dnsmasq.d M...

Pi-Hole - Adding blocklist urls to the Gravity DB from the command-line

Raspberry PI

This is to add block list to the Gravity DB from the command line from a text file. You will need a few things to do this This is for allowing zmodem options if you telnet session allows it like SecurCRT that I used. Install the following packages sudo apt...

Linux - Commands to Know

Linux

This is a quick version of commands to be aware of. System information  uname -a : Displays all system information. hostnamectl : Shows current hostname and related details. lscpu : Lists CPU architecture information. timedatectl status : Shows system tim...

Prometheus - Raspberry PI Node Exporter Install

Raspberry PI

This is to install the node exporter on a raspberry pi for Prometheus to scrap. Step1: Download Install the node exporter for Prometheus on your Raspberry Pi You will need to look at here for the current version of the node exporter from github https://git...

Raspberry PI - Uctronics panel setup

Raspberry PI

This is to setup the panel on the rack mount UCTRONICS raspberry pi holder with SSD drives You will need to get the following from GitHub sudo git clone https://github.com/UCTRONICS/SKU_RM0004.git Compile the download cd SKU_RM0004 sudo make clean && sudo...

Raspberry PI - Install NFS Server

Raspberry PI

dnf install nfs-kernel-server sudo cp /etc/exports exports.org vi /etc/exports Configure NFS Exports: Edit the /etc/exports file to define the directories to be shared and the clients allowed to access them. Export the new change sudo nano /etc/exports a...