zeldor.biz

Linux, programming and more

Copyright © 2025
Log in

Windows Server 2008 RDP

September 25, 2010 by Igor Drobot Leave a Comment

Windows Server 2008 is, as the name suggests, a server operating system which in the real world this means that systems running Windows Server 2008 will most likely be located in large rack systems in a server room. As such, it is highly unlikely that system administrators are going to want to have to physically visit each of these servers to perform small routine administrative tasks such as create a new system user…

To invoke the Remote Desktop Client in virtual session mode either select Start -> All Programs -> Accessories -> Remote Desktop Connection or enter the following in the Run dialog or at a command prompt:

1
mstsc

mstsc

To start the Remote Desktop Client in administrator mode try this one out:

1
mstsc /admin

mstsc /admin

Filed Under: Networking, Windows Tagged With: R2, RDP, Remote, Windows Server 2008

Windows powershell

September 12, 2010 by Igor Drobot Leave a Comment


The Windows PowerShell is a free and very useful new task-based command line shell and scripting language for system administration which provides automation for Windows – desktops and servers.

Windows PowerShell makes administrators more productive.

Get Bios Information:

1
Get-WmiObject -class Win32_BIOS

Get-WmiObject -class Win32_BIOS

Get CPU Information:

1
Get-WmiObject -class Win32_Processor

Get-WmiObject -class Win32_Processor

Get mainboard Information:

1
Get-WmiObject -class Win32_Baseboard

Get-WmiObject -class Win32_Baseboard

Get OS Version:

1
Get-WmiObject -class Win32_OperatingSystem

Get-WmiObject -class Win32_OperatingSystem

Get running processes:

1
Get-Process | Where-Object {$_.StartTime -lt (Get-Date).AddMinutes(-1)} | Format-Table ID, Name, StartTime

Get-Process | Where-Object {$_.StartTime -lt (Get-Date).AddMinutes(-1)} | Format-Table ID, Name, StartTime

Filed Under: Windows Tagged With: CMD, Powershell, Windows, Windows 7

Windows 7 and IPv6

July 18, 2010 by Igor Drobot Leave a Comment

IPv6 has been “the ultimate next generation of TCP/IP protocols” for so long that you can be forgiven for thinking that it will never be useful. However, with Windows 7, developer of Microsoft has finally given network administrators and normal users a reason to consider using IPv6.

This screen shot shows you, how easy it is to configure IPv6 address:

Filed Under: Windows Tagged With: Ipv6, networking, Windows, Windows 7

Windows XP and IPv6

July 18, 2010 by Igor Drobot Leave a Comment

To install IPv6:

Start, point to All Programs, point to Accessories, and then click Command Prompt. Type in it: ipv6 install and press anter.

Normally it’s a very easy proceeder, but I had a really nice and typical windows error :) [Screen-shot below] This german error message shows, Failed to complete the action – Error “0x800704b8”

I’ve found a little command line solution; Open command prompt, paste it and hit enter and enjoy :)

1
esentutl /p %windir%\security\Database\secedit.sdb

esentutl /p %windir%\security\Database\secedit.sdb

Click to resize:

Now repeat the installation, and it will work :)

Filed Under: Windows Tagged With: Ipv6, Windows ipv6

The real Windows 98 Source Code

June 6, 2010 by Igor Drobot Leave a Comment


Windows 98 Source Code
Subject: Windows 98 Source Code
(not too new, but slightly improved)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
TOP SECRET Microsoft(c) Code
Project: Chicago(tm)
Projected release-date: Summer 1998
*/
 
#include "win31.h"
#include "win95.h"
#include "evenmore.h"
#include "oldstuff.h"
#include "billrulz.h"
#define INSTALL = HARD
 
char make_prog_look_big[1600000];
 
void main()
{
while(!CRASHED)
{
display_copyright_message();
display_bill_rules_message();
do_nothing_loop();
if (first_time_installation)
{
make_50_megabyte_swapfile();
do_nothing_loop();
totally_screw_up_HPFS_file_system();
search_and_destroy_the_rest_of_OS/2();
hang_system();
}
write_something(anything);
display_copyright_message();
do_nothing_loop();
do_some_stuff();
if (still_not_crashed)
{
display_copyright_message();
do_nothing_loop();
basically_run_windows_3.1();
do_nothing_loop();
do_nothing_loop();
}
}
 
if (detect_cache())
disable_cache();
 
if (fast_cpu())
{
set_wait_states(lots);
set_mouse(speed, very_slow);
set_mouse(action, jumpy);
set_mouse(reaction, sometimes);
}
 
/* printf("Welcome to Windows 3.11"); */
/* printf("Welcome to Windows 95"); */
printf("Welcome to Windows 98");
if (system_ok())
{
bsod(random_err());
crash(to_dos_prompt);
}
else
system_memory = open("a:\swp0001.swp", O_CREATE);
 
while(something)
{
sleep(5);
get_user_input();
sleep(5);
act_on_user_input();
sleep(5);
}
create_general_protection_fault();
}

/* TOP SECRET Microsoft(c) Code Project: Chicago(tm) Projected release-date: Summer 1998 */ #include "win31.h" #include "win95.h" #include "evenmore.h" #include "oldstuff.h" #include "billrulz.h" #define INSTALL = HARD char make_prog_look_big[1600000]; void main() { while(!CRASHED) { display_copyright_message(); display_bill_rules_message(); do_nothing_loop(); if (first_time_installation) { make_50_megabyte_swapfile(); do_nothing_loop(); totally_screw_up_HPFS_file_system(); search_and_destroy_the_rest_of_OS/2(); hang_system(); } write_something(anything); display_copyright_message(); do_nothing_loop(); do_some_stuff(); if (still_not_crashed) { display_copyright_message(); do_nothing_loop(); basically_run_windows_3.1(); do_nothing_loop(); do_nothing_loop(); } } if (detect_cache()) disable_cache(); if (fast_cpu()) { set_wait_states(lots); set_mouse(speed, very_slow); set_mouse(action, jumpy); set_mouse(reaction, sometimes); } /* printf("Welcome to Windows 3.11"); */ /* printf("Welcome to Windows 95"); */ printf("Welcome to Windows 98"); if (system_ok()) { bsod(random_err()); crash(to_dos_prompt); } else system_memory = open("a:\swp0001.swp", O_CREATE); while(something) { sleep(5); get_user_input(); sleep(5); act_on_user_input(); sleep(5); } create_general_protection_fault(); }

Filed Under: Fun, Windows Tagged With: Fun, Windows

  • « Previous Page
  • 1
  • …
  • 3
  • 4
  • 5
Yeaaah Cookie! We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok