Posts

Word Document different on an iphone

i have weird thing going on. have word document used previous company had letterhead setup like. used document, deleted old logo , address , inserted new logo , address. all looked ok, created letters, viewed it, printed , emailed folks. appeared normal. then, 1 day co-worker called me , said old logo , address appeared when viewed on iphone. to trouble shoot, deleted document, logo, text ect. when emailed , viewed on iphone, old logo , address appeared. i @ loss , appreciate help. scott scott ocamb i guess bug version of word used on cell phone. however, starting point, make sure deleted undesired headers (and/or footers) in document sent. easiest way use document inspector. note word can have 3 different headers (and 3 different footers) per section. 3 types of headers (footers) must deleted, or edited, separately. more, see http://wordfaqs.mvps.org/headerfooter.htm. stefan blom, microsoft word mvp ...

Separating Global DNS AD from the local Network

dear all, one of our isp coustmer using global dns active directory users login server, want separat golbal dns local network , separtat dc , local dns have move users current domain new domain best practise this. , plan go microsoft exchage hosted service best practice. current setup domain controller global dns additional domain controller global dns exchange 2007 mailbox cluster , exchange 2007 cas-hub nlb thanks hi, >>i have move users current domain new domain best practise this you can use admt (active directory migration tool) migrate user accounts current domain domain, more information can go to: migrating user accounts http://technet.microsoft.com/en-us/library/cc784018(v=ws.10).aspx how migrate users across forest (cross forest) using admt 3.2 sid , passwords http://social.technet.microsoft.com/wiki/contents/articles/13904.how-to-migrate-users-across-forest-cross-forest-using-admt-3-2-with-sid-and-passwords.aspx regards, cicely ...

Active Directory - Clone VMDK containing Windows Server Backup

if backed bmr/system state of domain controller on drive (virtual -> vmdk), has tried cloning individual vmdk disk containing backup (look @ vmware kb article vmdk clone 1027876) , mount on 'isolated' network vm guest perform bmr using windows 2008 r2  ad ds ? hi, based on research, can restore system state backup same physical computer system state backup created, or different physical computer has same make, model, , configuration (identical hardware). in case, hardware of domain controller , physical host of vm must same if want perform successful restore. here link below useful you: how restore windows installation or move different hardware http://support.microsoft.com/kb/249694/en-us i f still have questions windows backup , restore, suggest refer following forum professional support: backup-windows , windows server forum http://social.technet.microsoft.com/forums/windowsserver/en-us/home?forum=windowsbackup&filter=alltypes&sort=...

Group Policy Replication Failure

environment: server 2003 forest level server 2003 domain level single domain/forest 3 server 2008 domain controllers in corporate hq 5 server 2003 domain controllers in branch offices issue: months ago began updating our hq domain controllers server 2003 server 2008.  has gone well, except have discovered group policy isn't being replicated out pdc (which 1 of server 2008 domain controllers).  when looking @ gpmc, ad version particular gpo 165, whereas sysvol version 138.  not seem frs replicating files correctly, can place file in sysvol directory , not replicated. i'm not sure why replication isn't working.  dcdiag looks clean servers.  event logs have no errors stating frs cannot connect destination servers, know problem lies within frs itself. where go here? trevor sorry late reply.  issue manifested direct result of moving sysvol , active directory database files on ntfs partition on server.  luckily, had 1 working domain controller here @ our home office able demote...

Powershell Commands to enable remote management on Server 2016 Core

hey all, this biggest pet peeve core. know core slim no gui. know remotely manage core services via rsat or web client, or whatever else particular services being implemented on core might be. it's nice service allowed remotely. nice if there group (i guess in case displaygroup since "group" listed under advfirewall snap-in displaygroup under objects attributes instead of group, same thing goes name column, have no idea how hate that.) enable rsat snap-in connect core services (adv firewall snap-in, comp mgmt, disk mgmt, etc) took long enough find decent blog showed proper powershell command enable existing rule icmpv4-in vs making new rule (which seem common answer applying icmp via cmd) "set-netfirewallrule -displayname “file , printer sharing (echo request – icmpv4-in)” -enabled true" source however other remote management requirements not easy determine. many enable group "remote administration" running get-netfirewallrule | ft displa...

Having a problem with write-progress in powershell 2

hi wrote script .it 1)prompts password 2)connects remote pc 3) gets list of services names start s 4) shows progress bar off how far has gotten . problem stores list of values in $out variable , displays them 1 after other , looks ugly looking away make better , more readable tried use write-host in place of {$out=$out + $_.name} progress bar flashes goes through loop , looks stupid. you can find script below lot can give me. #create connection remotepc $computer = "server1" $session = new -pssession -computername $computer -credential "server1\admin" #run commands on remotepc invoke-command -session $session -scriptblock { $services = get-service $services | foreach - object -begin {$i=0;$ out = "" } ` -process { if ($_.name -like "s*" ) {$ out =$ out + $_.name}; $i = $i+1;` write-progress -activity "searching services" ` -status "progress:" -p...

failover clustering generic script resource doesnt work

i have created failover cluster in 2008 , wanted execute vbs starts , stops services in 2 servers. know script gets called , succesfully changes services type automatic manual , manual automatic, fails start service or stop it. using psservice in script , busted head wall whole night , cant seem make want. suggestions welcome. did create generic script in cluster. '====================================================== ' file name: genericscriptres.vbs ' 'run custom script on particular node when group 'comes online. '====================================================== function open( ) open = 0 end function function online( ) resource.loginformation "entering script online" on error resume next strcomputer = "." set objwmiservice = getobject( "winmgmts:\\" & strcomputer & "\root\cimv2" ) set nodeinfo = objwmiservice.execquery( "select name win32_computers...