more office365 articles

http://onlinehelp.microsoft.com/en-us/office365-enterprises/ff637601.aspx
bulk user import w/ csv files

http://community.office365.com/en-us/wikis/upgrade/1096.aspx
detailed info on SSO options: SSO toolkit, adfs, shibboleth *very useful*

http://blogs.technet.com/b/microsoft_in_education/archive/2013/05/02/update-the-live-edu-sso-toolkit-to-maintain-single-sign-on-access-on-office-365-education.aspx
info on updating the SSO toolkit to support office365

http://technet.microsoft.com/en-us/library/dn194122.aspx
info on converting a federated domain back to a standard one

http://mshiyas.wordpress.com/tag/windows-powershell-cmdlets-for-office-365/
great list of msol* cmdlets

http://technet.microsoft.com/en-us/library/jj205461.aspx
setting up a trust between adfs and windows azure AD

https://devcentral.f5.com/blogs/us/big-ip-and-adfs-part-1-ndash-ldquoload-balancing-the-adfs-farm-rdquo
useful diagrams depicting adfs farm load-balancing

http://technet.microsoft.com/en-us/library/adfs2-federation-wif-application-step-by-step-guide(v=ws.10).aspx
info on developing a claims aware application

http://technet.microsoft.com/en-us/library/adfs2-troubleshooting-things-to-check(v=ws.10).aspx
adfs 2.0 troubleshooting guide

Posted in: IT by resinblade Comments Off on more office365 articles

(apple) APN certificates

i’ve had to generate and install these a few times for various MDM products. the process isn’t so bad. generate a CSR from whatever vendor’s product you are using.
then go to https://identity.apple.com/pushcert/ and login with an itunes account. create a new certificate based on the CSR. then download the newly generated certificate and install it.

Posted in: IT by resinblade Comments Off on (apple) APN certificates

actraiser1 (snes)

after watching a particular game review on youtube i became reinterested in playing actraiser. unlike most of the games i’m interested in replaying, i don’t really have a long involved history with actraiser. in fact, i remember only renting it for a weekend and becoming quickly disinterested. i don’t think i ever played it past the 2nd town. not necessarily disinterested because it was a bad game, it just took a really spectacular game to hold my interest when i was a teenager.

the game is a hybrid of arcade fantasy fighters (like magic sword or golden axe), a city simulation, and an rpg. revisiting the city sim portion is what wanted me to play the game again. i played for a little while last night and then some more this morning and was able to finish the game. it’s not that long of a game with 6 cities that have two stages each and then a final boss showdown. i’d say the game has a medium difficulty level. some of the bosses are fairly easy and others are pretty tough. i used the magic stardust spell often to get through the tougher bosses. the stages vary in difficulty as well, the harder ones being in the jungle and winter climates. the 1up system is interesting. 1up’s only apply for the stage you are currently playing. so if you have 3 lives and you lose them all on one stage the game isn’t actually over. you just end up back at the sky palace with another chance to try again. that being said, i think i could have beaten the game when i was younger if i had put some effort into it. 1ups and health are fairly placed throughout the stages so that they aren’t impossible to beat. i’d say the most difficult and frustrating part is trying to avoid dying by falling into a pit, lava, or spikes. also the more you play a stage and get used to the layout and enemies, the easier it becomes to play.

play control for the game is actually pretty fluid. the jumping is kind of stiff, but the game is very lenient with landing on ledges. many times i thought i misstepped a jump yet ended up securely on a ledge anyways. so this aspect makes up for the somewhat stiff jumping. my only other minor complaint is that it’s kind of difficult to land a jump attack without getting injured in the process.

i mentioned that i was intrigued by the city sim gameplay peviously. playing it now, i’d be hardpressed to call this a “sim”. there’s hardly any sim elements besides growing the population of the cities. so it’s somewhat clumsy with the city simulation attempt, however, i really like the idea how the sim and combat portions are interrelated. for instance, the population of the cities determines which experience level you are, not how many enemies you’ve killed in combat. also the type of spells you can cast and how often are determined by the goings on of the city folk. solving the quests of the citizens is the more interesting aspect of the cities, not really the simulation gameplay itself.

now to backtrack some…actraiser was one of the first games to launch with the north american release of the snes. i remember getting all hyped up by the teaser shots of actraiser in nintendo power. i remember the initial game coverage as well. i was amazed by the graphics, it was a such a huge departure from the capabilities of the NES. the game still looks pretty awesome (during the combat portions at least). it especially is impressive considering this was basically a launch title. the music is good too, some of the tracks reminded me of music from the snes star wars games.

overall, i’d say that actraiser is indeed a good game. however, i don’t think i’d label it a must play classic.

Posted in: Games by resinblade Comments Off on actraiser1 (snes)

useful AD command line

dsquery user -name * -limit 0 | dsget user -samid -hmdir -hmdrv
lists all users and their UNC home directory paths and drive letter mapping

dsquery user ou=admin,dc=mydomain,dc=com -limit 0 | dsmod user -mustchpwd yes
enables “user must change password at next logon” flag

dsquery user -name ericb
quick query to retrieve OU of user object

dsquery server -hasfsmo pdc
identifies which DC has the PDC Emulator role

import-module activedirectory
get-addomain mydomain.com | format-list pdcemulator,ridmaster,infrastructuremaster
get-adforest mydomain.com | format-list schemamaster,domainnamingmaster
another method of identifying which DCs have which FSMO roles

net user /domain <username>
lists user info including account expiration, group membership, home directory and user profile paths, and last logon time

get-adgroupmember -identity “<group>” | select name
lists names of group members for specified security group. alternatively “| select samaccountname” could be used

get-acl “<directory/file>” | format-list
lists NTFS permissions for specified filesystem object

import-module activedirectory
(get-aduser -identity <username> -properties memberof | select-object memberof).memberof
provides a clearly formatted listing of groups specified user is a member of (powershell)
source: http://www.benmorris.me/2012/07/powershell-get-ad-user-group.html

import-module activedirectory
(get-aduser -filter * -searchbase “ou=students,dc=domain,dc=com”).count
displays total number of users in specified OU

netdom renamecomputer %computername% /newname: <new computer name>
changes computer name

netdom join %computername% /domain: <domain> /userd: <user> /passwordd:*
joins computer to specified domain

netdom reset <computer name> /domain: <domain>
resets secure channel secret for specified computer

winrs -r:<computer name> <command>
run command (i.e. ipconfig /all) remotely on specified computer

netsh interface ip show config
basically ipconfig but via netsh

netsh interface ip set address name=”Ethernet” source=static addr=192.168.1.4 mask=255.255.255.0 gateway=192.168.1.254
setting a static IP address

netsh interface ip set address name=”Ethernet” source=dhcp
configuring interface for a DHCP assigned address

netsh interface ip set dnsservers name=”Ethernet” source=dhcp
configuring interface for DHCP assigned DNS servers

netsh interface ip set dns name=”Ethernet” static 192.168.1.40
statically assigning primary DNS server (verify)

netsh interface ip add dns name=”Ethernet” 192.168.1.41 index=2
statically assigning secondary DNS server (verify)

ipconfig /flushdns
clears local DNS cache

ipconfig /displaydns
lists contents of DNS cache

ipconfig /registerdns
manually re-registers client’s DNS name

route print
list gateway and route info

arp -a
lists MAC address cache

netstat -an | find /i “listening”
lists ports system is listening on

repadmin /syncall
syncs DC with replication partners

repadmin /replsummary
displays replication summary (there should be no deltas greater than 60 minutes)
more info here: http://terrytlslau.tls1.cc/2011/07/how-to-read-result-of-repadmin.html

Posted in: IT by resinblade Comments Off on useful AD command line

vdr: integrity check failed

a power outage some time ago messed up the VDR backup destinations. recataloging nor integrity checks would ever finish. i finally gave up and decided to reformat the destinations and start anew.

the weird thing was that even after being reformatted one of the destinations would still fail an integrity check.

the following article describes and the exact same situation and the solution:
http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c02058236

i think i experienced a bit of deja vu here, because i feel like i went through these exact steps before with ben.

summarized solution:
login to VDR appliance
service datarecovery stop
cd /SCSI-1:0/VMwareDataRecovery
rm BackupStore.cat
rm BackupStore.cat.bak
service datarecovery start

then attempt integrity check on destination again (may take more than once for a success).

Posted in: IT by resinblade Comments Off on vdr: integrity check failed

outlook 2007/2010: delegate access

delegate access seems to come up all the time…

from an outlook 2010 perspective, to grant delegate access go to the file menu
choose the account settings dropdown and choose delegate access.

to open another user’s mailbox that you have delegate access to, also go to the file menu
click open and choose “other user’s folder”. this method however is pretty lame. especially for frequent use cases.

the more elegant method is to go to account settings and click “change” on the appropriate account. then “more settings” and advanced. under “mailboxes, open these additional mailboxes:” add the mailbox(es) that you have delegate access to. one caveat with this method is that the “folder visible” permission must be set on the root folder of the mailbox for the user who has delegate access.

to send on behalf of another user, first you need the permission to do so and then you need to make the From: field visible. in outlook 2010, create a new email message and then open the options tab and select From in the “show fields” column. then search for the user you want to send on behalf of.

the outlook 2007 steps should be fairly similar…

sources:
http://office.microsoft.com/en-us/outlook-help/manage-another-person-s-mail-and-calendar-items-HA010355561.aspx#_Toc307479956

Posted in: IT by resinblade Comments Off on outlook 2007/2010: delegate access

exchange 2007: hub transport authentication settings

in the exchange management console
server configuration->hub transport->select hub transport server
then double-click client <server name> under receive connectors

relevant info in the network, authentication, and permission groups tabs
common settings…
server name: hub transport FQDN
port: 587
security: STARTTLS
auth method: password

source:
http://help.globalscape.com/help/me3/configuring_authenticated_access_to_exchange.htm

Posted in: IT by resinblade Comments Off on exchange 2007: hub transport authentication settings

exchange 2007: ssl certificates

run the following on CAS servers to view current cert info (exchange management shell):
Get-ExchangeCertificate -DomainName mail.mydomain.com

to import and enable a certificate all in one step run:
Import-ExchangeCertificate -Path C:\mail_mydomain_com.cer | Enable-ExchangeCertificate -Services “IMAP, POP, IIS”

if the certificate has already been imported via the digicert utility or through the certificates snap-in then just run:
Enable-ExchangeCertificate -ThumbPrint <thumbprint> -Services “IMAP, POP, IIS”

note: if you receive an error regarding private key missing you’ll need to generate a new CSR and get a new certificate
more info on this here:
http://www.digicert.com/ssl-support/exchange-private-key-missing.htm

digicert exchange 2007 CSR tool (useful for first time cert generation):
https://www.digicert.com/easy-csr/exchange2007.htm

digicert certificate utility (very useful for cert renewals and grabbing cert thumbprints):
https://www.digicert.com/util

info on installing certs here:
http://www.digicert.com/ssl-certificate-installation-microsoft-unified-communications.htm

Posted in: IT by resinblade Comments Off on exchange 2007: ssl certificates

sccm 2012 schema extension

wanted to note that if the schema extension was already done for sccm 2007 on the domain, that you do not need to do the schema extension for sccm 2012.

source:
http://blogs.technet.com/b/configurationmgr/archive/2012/10/30/extending-the-schema-in-system-center-2012-configuration-manager.aspx

Posted in: IT by resinblade Comments Off on sccm 2012 schema extension

dragon warrior 2 (nes)

i’ve just begun playing dragon warrior 2. it’s interesting that i never had dragon warrior 2, 3, or 4 when i was kid since i loved the first game so much. i think the reason for that is because nintendo power greatly dictated which games i knew about and which games i became interested in. there was only brief coverage of dragon warrior 2 & 3 in the 1991 issue (vol. 27). nothing like the previous coverage of dragon warrior 1. and during this same period, nintendo power was previewing the super nes which was soon to come out. knowing the younger me, the nes was probably dead to me at this point as i anticipated the snes debut. side note: looks like super nes games didn’t become the main focus for nintendo power until the first issue of 1993 (vol. 44). another side note: i believe the august 1993 issue (vol. 51) was the end of my subscription (approximately). this would be the time period were i ignored the snes and focused on playing PC games. i got back into the snes and nintendo power near the end of 1994/beginning of 1995 w/ vol. 67 and 68.

i’ve only briefly played dragon warrior 2 during the late 90’s and that was for probably an hour or so. i’m counting this play-through as my true first impression. dragon warrior 2 maintains a lot of the same style of the first game. menu actions have been simplified. there is no longer a separate option for stairs, when you walk on stairs it’s assumed that you want to use them. there is no longer a door option either. when you need to use a key you use it from the item menu. and finally the “take” functionality is now part of the search action. dragon warrior 2 introduces a party/group of playable characters. enemies can also appear in groups.

the 2nd playable character to join the party is the prince of cannock. he is the magic user of the group. thus far he’s proven to be fairly good at getting killed…but at least he can cast heal and antidote. dragon warrior 2 introduces enemies that can poison party members…always my favorite thing in an rpg :/.

my biggest complaint about the game so far is that the enemies are ridiculous. mostly nonsense cartoonish things that are incredibly ugly. the color palettes used for enemies in this game are vomit-inducing. i always viewed the enemies in dragon warrior 1 to be crude renditions of the awesome illustrations in the strategy guide. and some looked incredibly good such as the dragons. the point i’m trying to make is that i always thought the enemies of dragon warrior were meant to be serious (except perhaps for the slimes). so it’s disappointing to me that the rest of the series retained a very cartoonish look. it’s hard to immerse oneself in a fantasy game where you’re controlling a party of warriors, mages, what have you, and you have to go around fighting cartoons. i prefer the more serious depictions in the final fantasy series.

update 6/2/2013:
the game is pretty decent. i have all 3 characters in the party now. the prince of cannock actually isn’t that bad of a character. he’s kind of a warrior/mage hybrid and he can somewhat hold his own in physical combat. the last addition to the party is the princess of moonbrooke and she is solely a magic user. her physical combat skills are almost non-existent and she becomes the character most likely to die. in fact, she is a burden to have in the party for quite some time. the princess’ infernos spell is very useful for damaging large groups of enemies though.

having the victims of moonbrooke exist as ghostly flames was pretty cool, as was the princess being transformed into the form of a dog. i also liked the geography of alefgard from the first game existing in dragon warrior 2. i was surprised by there being a ship in a dragon warrior game, for some reason, i thought vehicles were exclusive to the FF series.

after visiting tantegal and charlock, it’s not really clear on where to proceed to next. i’m kind of just wandering around at the moment. right now the hero is level 18, prince is level 16, and the princess is level 12.

Posted in: Games by resinblade Comments Off on dragon warrior 2 (nes)