• Home
  • Linux
  • Docker
  • Windows
    • PS
    • C#
    • Exchange Server
  • Other
    • Perl
    • IPV6
    • MacOS
  • DB
    • MSSQL
    • MariaDB
    • PG

Home

Install .NET Framework 3.5 on Windows Server 2012 and Windows Server 2012 R2

Details
Written by: po3dno
Category: Other
Created: 01 October 2014
Hits: 1421

1. Go to a command prompt and enter this:

dism /online /enable-feature /featurename:NetFX3 /all /Source:d:\sources\sxs /LimitAccess

Note: Source should be the Windows installation disc. In my case, this was located on D:

Bug when adding .net framework 3.5 in Server 2012

2. Go down to “Specify an alternate source path” and enter “d:\sources\sxs” as the path.

Specify alternate source path windows server 2012 .net framework 3.5

Specify alternate source path windows server 2012 .net framework 3.5

Now you should see this under your Features list:

.NET Framework 3.5 feature installed on Windows Server 2012

Сreate a bootable Windows 8 USB using Diskpart

Details
Written by: po3dno
Category: Other
Created: 01 October 2014
Hits: 1415

1. Press the Windows button and type CMD

How to create a bootable Windows 8 USB using Diskpart 1

2. Right-click on Command Prompt and at the bottom of the screen select Run as Administrator . If you don’t do this, you will get an Access Denied error when trying to run Diskpart.

How to create a bootable Windows 8 USB using Diskpart

3. You will receive a question from the Windows UAC if you want to allow Command Prompt to run. Press Yes

4. Type Diskpart and press ENTER

5. Type list disk and press ENTER  . This will list all the disks that is plugged in to your system.

6. Now you have to select the disk that you want to use as a bootable USB. It’s VERY IMPORTANT that you select the USB that you want to use and not for example the system disk. In my case, I want to select Disk 1, but definately not Disk 0 as it’s my system disk!

When you are sure what drive is your USB, type select disk <number> and press ENTER

7. The next step is to remove the partitions on the drive. As I mentioned before, make sure you have selected the correct disk!
Type clean and press ENTER

8. Now you need to create the primary partition by typing create partition primary and press ENTER

9. Select the partition you just created by typing select partition 1 and press ENTER

10. Type format fs=ntfs quick and press ENTER, to format the drive using NTFS and do a quick format.

10. Make the partition active. If you don’t do this, the USB won’t boot.
Type active and press ENTER,

11. Type assign and press ENTER,  to assign the drive the first available drive letter. The drive should now be available in  Windows Explorer.

12. Now go to your Windows 8 media, select all files and copy them over to your USB drive.

Copy Windows 8 media to bootable USB

Copy the Windows 8 media to your bootable Windows 8 USB

13. Plug in your new bootable Windows 8 USB to the system you want to install it on. Don’t forget to change the startup order in BIOS, so the USB drive is first in the order.

Now you’re done and you should be able to install Windows 8 from a USB!

Here are all the commands that you needed to type in earlier:

Diskpart

 

Windows shell commands to get system/process info

Details
Written by: po3dno
Category: Power Shell
Created: 15 September 2014
Hits: 1481

This file has 7 sections

1. A few examples showing Process information, mem usage, cpu, handles etc.., and altering processes

2. A few examples of retrieving system information (system, memory, drives, hardware)

3. A few examples of listing Services

4. A few examples of altering the state of services

5. A few examples on how to get network information

6. For reference: A very basic listing of some DOS (cmd) commands, for file, directory, or task management.

7. A few wellknown scanning/tracing tools

 

Read more …

Powershell post image

Details
Written by: po3dno
Category: Exchange Server
Created: 25 February 2014
Hits: 1607

param(

  [System.IO.FileInfo]$file = $null,

  [string]$login = $null

);

 

$CODEPAGE = "iso-8859-1";

 

$url_upload = "http://url/filepost.php";

Read more …

Права на редактирование группы рассылки

Details
Written by: po3dno
Category: Power Shell
Created: 25 February 2014
Hits: 1372

$list = Get-Content "distributiongroup.txt"

Foreach ($i in $list) {

  $i

  $grp = get-distributiongroup $i

  $manage = $grp.managedby

  $newuser = get-user USER

  $newmanage = $manage + $newuser

  Set-distributiongroup $grp -managedby $newmanage -bypasssecuritygroupmanagercheck

}

 

  1. Структура AD из 1С
  2. ACL AD OU
  3. Пользователи без фотографий в Outlook
  4. Удаляем отключенных пользователей из групп

Subcategories

Power Shell Article Count:  53

C# Article Count:  10

Perl Article Count:  1

Exchange Server Article Count:  15

Other Article Count:  24

MSSQL Article Count:  17

Windows Article Count:  25

MariaDB Article Count:  3

Linux Article Count:  9

Docker Article Count:  3

pg Article Count:  2

Page 25 of 32

  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29

Login Form

  • Forgot your password?
  • Forgot your username?

Statistics

  • Users 2
  • Articles 177
  • Articles View Hits 173494