How to enable test mode on windows 2012

To install unsigned drivers on Windows Server 2012, you have to disable the Digital Signature Driver Verification.

In previous versions (before 2008 R2 or something like that), you could simply disable the check through group policies in gpedit.msc (User Configuration-> Administrative Templates-> System-> Driver Installation, Code Signing for Device Drivers). Now the rigid concept of security is replaced by the brutal arbitrariness of Microsoft. Fortunately, they still left a loophole.

0 0

Ubuntu - find out the free space

How much free space is left? Who took it? These two issues have to be faced constantly, especially file server administrators. If on the Windows platform, in a graphical environment, it's not difficult to find out, then the console of server versions of Linux can confuse many. However, do not be afraid, it's quite easy to get interesting information in the Linux environment.

As practice showed, this issue is relevant not only for novice administrators. Indeed, it is not enough just to find out the size of a file or folder, but you need to quickly and efficiently find out exactly who has taken up disk space and what. But first things first.

0 0

Bottleneck searching on Windows

Good day

Fine day, nothing boded ill. But here came the problem - the speed of some application was unacceptably small, and last week / month / day ago everything was fine. We need to solve it quickly, spending as little time as possible. A server with problem running Windows Server 2003 or later.

I hope the following script will be brief and understandable enough and useful to both novice administrators and more serious comrades, you can always find something new for yourself. Do not immediately rush to explore the behavior of the application. First of all, is it worthwhile to see if there is enough server performance at the moment? Are there any "bottlenecks" that limit its performance?

0 0

How to setup ProFTPd for hosting

There are many articles about configuring LAMP.
Many of them have a couple of paragraphs, which briefly describe the installation and basic configuration of ProFTPd.
As a rule, this is not enough to organize a normal hosting operation.
The question arises - "how to configure a specific user's ftp access to a particular virtual host?".

0 0

Netrwork configuration in PowerShell and nic teaming

To configure network with PowerShell you need to do:

1) Get the list of network interfaces: Get-NetIPInterface

2) Set address, mask and gateway: new-netipaddress -interfacealias "manage" -ipaddress "192.168.10.2" -prefixlength 21 -defaultgateway 192.168.10.1

3) Set DNS servers: set-dnsclientserveraddress -interfaceindex 30 -ServerAddresses 192.168.10.10,192.168.10.18

To add network adapter to nic teaming:

New-NetLbfoTeam -Name TestTeam -TeamMembers "Ethernet", "Ethernet 2" -WhatIf'

This command will create switchindependent team, with dynamic balancing.

Эта команда создаст switchindependent team, с динамической балансировкой. For convenience, you can rename adapters as well as temporarily disable the firewall and configure it remotely via mmc:

$NetAdapter = $NetAdapter | Rename-NetAdapter -NewName $NIC.NIC -PassThru netsh advfirewall set allprofiles state off

0 0

Step-by-step Guide to Setting Up a GitLab Server on Ubuntu 16.04

Step-by-step Guide to Setting Up a GitLab Server on Ubuntu 16.04

If you've ever dabbled in scripting, configuration, or programming, understanding the importance of a version control system like GitLab is crucial. With platforms like GitHub available for public projects, what happens when you want a private repository? Enter GitLab, your solution for hosting private git repositories.

0 0

Customize Your Windows Start Menu: Bringing Back the Control Panel & More

Customize Your Windows Start Menu: Bringing Back the Control Panel & More

Are you nostalgic for the easily accessible control panel from the old Windows menu? You're not alone! Many users found the shift from the traditional control panel to Windows settings, introduced in a recent spring update, a tad bit confusing. Especially since the settings button was already prominently available in the Start menu.

But fret not! Today, I'll guide you through a simple way to bring back that beloved control panel to your menu and even introduce some personalized additions.

0 0

How to Enable Multiple RDP Sessions in Windows 10: A Step-by-Step Guide

How to Enable Multiple RDP Sessions in Windows 10: A Step-by-Step Guide

Unlock the potential of your Windows 10 with the ability to run multiple Remote Desktop Protocol (RDP) sessions simultaneously. Here's a comprehensive guide to achieve this seamlessly.

0 0

Pages

Subscribe to www.mytechnote.ru RSS