0

First look : System Center Operations Manager 2012 RC installation screenshots

-

As we can download SCOM 2012 RC from Microsoft, I decided to do quick installation in LAB environment. Whole test environment is based on VMware Workstation 8. Deployment of SCOM 2012 will be spread across few servers to separate certain functions (in fact similar to real-life deployments). For SCOM2012 deplyoment I will use following servers:

  • lab-dc-01 – Domain Controller – Windows Server 2008 R2
  • lab-sql-01 – SQL Server – Windows Server 2008 R2 + SQL Server 2008 R2
  • lab-net-01 – SCOM 2012 Management Server – Windows Server 2008 R2 + SCOM 2012 Management Server
  • lab-wks-01 – SCOM 2012 Management Console – Windows 7 x64 Ultimate + SCOM 2012 Management Console

This will be mainly screenshot tour through installation phases of SCOM2012.

Here is schematics of the lab:

(more…)

0

Games : Codes : Skyrim – Free camera moves

-

Sometimes would be nice to hover over land of Skyrim and watch everything from above or even take some pictures of cities and places from sky. But how to do that?

Best way to fly around like a bird is to enable free camera moves. That will allow to freely move around and observe everything from above, like bird flying over Skyrim.

(more…)

0

Tips & Tricks : Windows 8.1 as wireless hotspot

-

When you need to use your computer as wireless hotspot, you can easily enable that functionality with PowerShell:

Windows PowerShell
Copyright (C) 2013 Microsoft Corporation. All rights reserved.

PS C:\windows\system32> netsh wlan set hostednetwork mode=allow ssid=Windows-Wireless-Hotspot key=password123
The hosted network mode has been set to allow.
The SSID of the hosted network has been successfully changed.
The user key passphrase of the hosted network has been successfully changed.

PS C:\windows\system32> netsh wlan start hostednetwork
The hosted network started.

PS C:\windows\system32>
4

Tips & Tricks : OneNote 2013 keeps crashing when trying to open notebook from OneDrive

-

If you come across issue that OneNote 2013 will keep crashing each time you try to open notebook from OneDrive

  • Go to %userprofile%\AppData\Local\Microsoft\OneNote\15.0 folder and delete OneNoteOfflineCache_Files folder and OneNoteOfflineCache.onecache file
  • Go to %userprofile%\AppData\Local\Microsoft\Office\15.0\ path and delete OfficeFileCache folder.

Then go back to OneNote 2013 and try to open notebook from OneDrive. This time it should work.

PS. %userprofile% points to C:\Users\%username%\

0

Tips & Tricks : Yii framework update issue

-

When Yii-based project doesn’t want to update, there might be missing component.

Once you add one plugin everything goes back to normal.

[root@arb-srv-01 easyforms]# composer update
Running composer as root/super user is highly discouraged as packages, plugins and scripts cannot always be trusted
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

Problem 1
- yiisoft/yii2 2.0.7 requires bower-asset/jquery 2.2.*@stable | 2.1.*@stable | 1.11.*@stable -> no matching package found.
- yiisoft/yii2 2.0.7 requires bower-asset/jquery 2.2.*@stable | 2.1.*@stable | 1.11.*@stable -> no matching package found.
- Installation request for yiisoft/yii2 2.0.7 -> satisfiable by yiisoft/yii2[2.0.7].

Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.

Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
[root@arb-srv-01 easyforms]# composer global require "fxp/composer-asset-plugin"

Changed current directory to /root/.config/composer
Running composer as root/super user is highly discouraged as packages, plugins and scripts cannot always be trusted
Using version ^1.2 for fxp/composer-asset-plugin
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Installing fxp/composer-asset-plugin (v1.2.1)
Downloading: 100%

Writing lock file
Generating autoload files
[root@arb-srv-01 easyforms]#

Hope that helps.

0

How-to : Nagios installation on openSUSE 11.4 “Celadon”

-

Quick installation how-to for Nagios on openSUSE 11.4 “Celadon” platform. Same procedure applies to other versions of opeSUSE platform. I’m using version 11.4 for my LAB purposes.

(more…)

0

Tips & Tricks : Ubuntu 18.04 missing packages

-

Once you install Ubuntu 18.04 some packages might not be found by default in repositories (example: php7.2-fpm).

If you want to have more packages available just add repository with more packages available 🙂

sudo add-apt-repository universe

Now you can enjoy more standard packages available.

0

How-to : Running Cisco Nexus 1000 as virtual machine on vSphere Hypervisor ESXi 5

-

In one of the previous articles I did quick overview How-to Install vSphere Hypervisor ESXi 5 on VMware Workstation 9. One of the reasons I did that in my Lab environment was to run Cisco Nexus 1000v with NX-OS on it and evaluate this operating system and how it can integrate with other products. So, here is quick overview how to make Cisco Nexus 1000v happen on vSphere ESXi.

(more…)

0

Windows Registry : How to change background on Windows logon screen

-

Background image on logon screen os common issue with pre-installed servers, for example from Dell. That makes accessing those systems via Remote Desktop painful and slow (it happenes that serer is shipped to location, racked and stacked, and then whole configuration take place remotely). By default background bitmap from logon screen is sitting in C:\Windows\System32\oobe\info\backgrounds, so you can put your own logon screen background or if you don’t want to have any (just system default) you can follow instructions below and remove background from logon screen.

(more…)