FYI: Windows Activated - but Action Center had remained red on need to complete Windows Activation
FYI
Windows Activated - but Action Center had remained red on need to complete Windows Activation. I discovered that only when I just had to use Action Center now. Windows was activated weeks ago.
To fix - I had to follow the prompt in Action Center - and go from here to Windows Activation - which stated Windows was (already) Activated.
After that Action Center removed its promp for activation.
- Edited by Computermensch Wednesday, September 12, 2012 1:32 PM
- Changed type Leo Huang Thursday, September 13, 2012 7:17 AM
Reply:
------------------------------------
Setting registry key via group policy to execute a logOFF script for any user
As you all know setting group policy logoff script registry keys directly will not work and this has to be done via group policy. I cant use gpedit.msc as I need to automate this during 1 click install through a script.
Can you guys help with a script which adds logoff script entries in to registries via group policy ?
Reply:
Hi,
As the question may be related script, it is recommended to post the question in The Official Scripting Guys Forum for better assistance.
Thanks for your understanding.
Regards.
Jeremy Wu
TechNet Community Support
------------------------------------
documents uploaded outside of root folder in document library
HI
We are having console application to upload bulk document to document library.It was working fine.
Now it is not working.it is uploading files successfully.But When i check that it will not be visible.So i changed the properties into series item then it is visible and accessible.
But i don't want to change into series item. Same code was working fine for 2 years. Now it is uploading document outside of root folder(1). How to solve this? should i do any configuration settings?
Unable to open Sharepoint 2010 intranet portal in Blackberry mobile devices
Hi All
Sharepoint 2010 intranet portal is not opening in Blackberry mobile devices, below error message displays -
error 401- the requested web page requires user authentication.
There is no authentication prompt for credentails. Please let me know, what changes should make at my web application level so that portal could be open in Blackberry mobiles.
Thanks in advance.
Reply:
Hi,
You can access this site for example from
http://www.sharepoint2010now.com/_layouts/mobile/mblwp.aspx?Url=%2Fdefault%2Easpx
if you add a /m/default.aspx to your path for example
http://www.sharepoint2010now.com/m/default.aspx
both of these links will work. This gives you the mobile access page.
Some links :
http://blogs.technet.com/b/office2010/archive/2009/11/20/mobility-in-office-2010.aspx
http://plexhosted.wordpress.com/2012/01/22/219/
http://silverdust.softartisans.com/
http://ww1.prweb.com/prfiles/2010/09/08/2929604/SilverDust2010.pdf
http://www.cmswire.com/cms/enterprise-20/access-your-sharepoint-2010-sites-through-the-blackberry-008551.php
Sharepoint 2010
http://www.cmswire.com/cms/enterprise-20/what-is-sharepoint-2010-vision-and-reality-007513.php
http://us.blackberry.com/business/software/sharepoint-client.html
thx
iffi
- Edited by imughal Thursday, September 13, 2012 5:53 AM add links
------------------------------------
Determine When Users Have Changed Their BPOS-S Password - All Users Must Change BEFORE BPOS Transition
As your BPOS company comes closer to being Transitioned into Office 365, each online company administrator must verify that each of their users have changed their passwords, in order to synchronize these passwords into Office 365. Doing this will assure that once the company is transitioned, the users will use the same password in the new Office 365 environment.
To help Online Administrators, they should first download the latest Microsoft Mailbox Transporter Tool, which includes updated PowerShell scripts, which can be used to query (Get-MSOnlineUser) BPOS-S for user password changes, allowing you to determine which users have not changed their password. You can then reach out to them and ask for them to change OR you can use the Set-MSOnlineUser command to set a password for them, which will then be synchronized into Office 365!
Resources:
- Download the latest Microsoft Transporter Suite Tool: http://www.microsoft.com/download/en/details.aspx?displayLang=en&id=5015
- Learn more about the updated Get-MSOnlineUser and Set-MSOnlineUser: http://www.microsoft.com/online/help/en-us/helphowto/337f0b2d-facf-4e2d-8d4c-58ae5bab80c9.htm
- Changed type Ryanph [MSFT] Thursday, January 12, 2012 7:48 PM
- Edited by Ryanph [MSFT] Thursday, February 2, 2012 12:12 AM update regarding change in steps
Reply:
Hello Ryanph,
Thanks for this information. I am however, having problems getting it to work, even after updating our copy of the Microsoft Transporter Suite Tool. I'm am getting this error:
Set-MSOnlineUserPassword : Cannot validate argument on parameter 'Password'. Th
e argument is null or empty. Supply an argument that is not null or empty and t
hen try the command again.
At line:1 char:121
+ Get-MSOnlineUser -Credential $Cred -enabled | where {$_.PasswordLastSetDate
-lt "12/1/2011"} | Set-MSOnlineUserPassword <<<< -Credential $Cred -ChangePass
wordOnNextLogon $true
+ CategoryInfo : InvalidData: (Microsoft.Excha...osoftOnlineUser:
PSObject) [Set-MSOnlineUserPassword], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.Excha
nge.Transporter.PSI.SetXsMicrosoftOnlineUserPassword
I have successfully ran $Cred = Get-Credential first, it prompted me for my admin credentials which I provided. But after running the 2nd line of your example above, I recieve that error.
Any ideas?
Thank you,
Ted
------------------------------------
Reply:
Sorry Ted, I completely forgot the -Password command :-) So once you issue a -Set-MSOnlineUserPassword you must use the -Password command which sets the user's password to something. Using the additional -ChangePasswordOnNextLogon $True, this obviously forces the user to change it before they can login. You could leave the past part off and just tell all the users their password is "xxx" and since the password was set, it WILL be synchronized into Office 365 and be ready for use for these users. of course if they change it to something else, that password will be synchronized into 365 and be used post-transition. Up to you on how you want to use this....sorry about the missing piece :-)
Example for determining which users have not changed their BPOS-S password since December 1, 2011. You can use this example PowerShell script once you updated your Microsoft Online Transporter Suite and can modify either the date range or any of the other conditions/parameters to meet your needs:
Find All Users Who Have Not Changed Passwords Since 12/1/2011 and Change Password to "P@ssw0rd1" and Force to Change at Next Logon
$Cred = Get-Credentials [enter your BPOS Administrator account credentials]
Get-MSOnlineUser -Credential $Cred -enabled | where {$_.PasswordLastSetDate –lt “12/1/2011”} | Set-MSOnlineUserPassword -Password "P@ssw0rd1" –Credential $Cred –ChangePasswordOnNextLogon $true
The above will query the BPOS Microsoft Online Directory Services (MSODS) for users who have NOT changed their password since December 1st, 2011. Anyone in this PowerShell (in-memory) list will then be piped to the Set-MSOnlineUserPassword and change these users passwords to "P@ssw0rd1" and instruct MSODS to force the user to change their password during their next login. Of course you will need to tell these users that their password has changed to P@ssw0rd1, as they will need this to change their password!
Note - If you want to run the following, it will give you the list, and then you can run the full command to set the password for these users. This way you will have a list of people that you need to contact with their new password:
GET LIST OF USERS WHO HAVE NOT CHANGED THEIR PASSWORDS SINCE DECEMBER 1, 2011
$Cred = Get-Credentials [enter your BPOS Administrator account credentials]
Get-MSOnlineUser -Credential $Cred -enabled | where {$_.PasswordLastSetDate –lt “12/1/2011”} | FL Identity
Note - In order to use the above updated Get-MSOnlineUser cmdlets you must upgrade your BPOS Mail Migration machine to use the latest Migration Tool. If you have downloaded and attempted to update/upgrade your older Migration Tool application, you may find errors when issuing the Get-MSOnlineUser command. Please refer to the following post, which explains how to resolve this issue: http://social.technet.microsoft.com/Forums/en-US/bpostransition/thread/312cdddf-d20a-404b-8f1f-275f52cd75cd
HTH
Transitions Community Lead ...Ryan J. Phillips
- Edited by Ryanph [MSFT] Thursday, February 2, 2012 12:10 AM
------------------------------------
Reply:
------------------------------------
Reply:
I am new to powershell and have ran the script above which works perfectly however I receive the following 'there are more result available than are currently displayed. To view them increase the value for the maximum number of results to display'. Can you please provide the code I would use to display all results,
Thanks
------------------------------------
Reply:
Like this to increase to 500 results.
Get-MSOnlineUser -Credential $Cred -ResultSize 500 -enabled | where {$_.PasswordLastSetDate –lt "12/1/2011"} | FL Identity
------------------------------------
Reply:
------------------------------------
Reply:
If I run the following command as you have listed, will this suffice in triggering the Office 365 Migration?
And what if the user has not logged in yet to change the password before the migration?
Also, what if I just set the password and set require "ChangePasswordOnNextLogon $false", will this be enough to trigger/complete the migration process without having to login to the new Office 365 portal for my end users?
Find All Users Who Have Not Changed Passwords Since 12/1/2011 and Change Password to "P@ssw0rd1" and Force to Change at Next Logon
$Cred = Get-Credential
Get-MSOnlineUser -Credential $Cred -enabled | where {$_.PasswordLastSetDate –lt "12/1/2011"} | Set-MSOnlineUserPassword -Password "P@ssw0rd1" –Credential $Cred –ChangePasswordOnNextLogon $true
Thanks,
Sal
"I am not discouraged, because every wrong attempt discarded is another step forward." Thomas Edison
------------------------------------
Reply:
Sal,
As long as the password is modified, whether by the user or by a powershell cmdlet, the password is then synced to O365.
If a user does not log in prior to the transition, it will not affect anything as long as the password has not expired in O365 (90 days after being set/changed). If the user doesn't have their BPOS password post-transition, they won't be able to log into the Sign in Client (SIC) and have their Outlook profile automatically redirected to O365. This will mean you will need to remove the registry keys put in place by the SIC, manually, as well as manually reconfigure the Outlook profile (unless you want to create a NEW profile and redownload all email again).
Have a great day,
Dan
www.insecurityinc.info
------------------------------------
Reply:
Is the password change just for users who have passwords that are about to expire? I changed my BPOS password about a month ago and can currently login to Office365 with that password. Is it necessary for me to change my password?
Thanks,
John
John W.
------------------------------------
Reply:
EVERY user needs to change their password once since, basically, January 1st of this year. They will also need to make sure their passwords don't expire during the transition period so that they can login to the BPOS Sign in client (SIC) at least once post-transition, for the mailbox reconfiguration to point their profile to O365.
Have a great day,
Dan
www.insecurityinc.info
------------------------------------
Reply:
Hi all, I found out an interesting tidbit on using these PowerShell commands and wanted to let everyone know what I found:
For BPOS administrators who like to use PowerShell, specifically for password management, you may have found that certain PowerShell commands work while others do not. Specifically there are different parameters that can be used to check for whether a user has changed their Password since xx/xx/xxxx and perform certain tasks, such as setting the password and/or forcing the user to change their password at next logon.
For example, if you use the following command you will find that the PowerShell command states that the parameter -Password is missing and must be included in order to properly run:
Failure
- Get-MSOnlineUser -Identity testuser@domain.com | Set-MSOnlineUserPassword -ChangePasswordOnNextLogon $true
However if you run the Set-MSOnlineUserPassword separately you CAN use the -ChangePasswordOnNextLogon without needing to use the -Password parameter, thereby not needing to change the password, but instead simply force the user to change the password the next time they login to BPOS Services:
Success
- Set-MSOnlineUserPassword -identity testuser@domain.com -ChangePasswordOnNextLogon $true
So if you simply need to force users to change their password at next logon, use the above PowerShell command against BPOS. However if need to change the users password in addition to forcing a password change, the Get & Set commands can be used together to perform this task. Just make sure you use the -Password parameter when performing this particular task.
Hope this helps clarify what parameters are required and when to use one over another.
Transitions Community Lead ...Ryan J. Phillips
------------------------------------
Reply:
------------------------------------
How to hide advance search feature for custom search scopes in FIM 2010
Hi,
We have created many custom search scopes. And we want to hide the advance search feature for them. Please does any one know any means of doing it?
hima
- Changed type Markus VilcinskasMicrosoft employee Monday, June 6, 2011 1:39 PM
Reply:
I don't believe there is a way to do that. It seems to be a built-in feature of the asp.net pages in the FIM portal.
David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html
------------------------------------
Reply:
Well, you could 'hide' it.. and this really *is* hiding it and not removing it - and is very much a hack in my mind - but...
there are two css classes
.newListViewSearchMode
.searchModeToggleImage
That control the visual appearance of those UI elements. You could alter those in the FIM theme to make them 'invisible'. It would be quite interesting to see the reaction of someone accidentally clicking in the contol area however :)
If you're really woried about people viewing things outside of the search scopes you defined, use a less permissive MPR to limit access to the 'undesired' objects and you're much more protected.
Frank C. Drewes III - Senior Consultant: Oxford Computer Group
------------------------------------
Reply:
Here's how to hide the Advanced Search button on the Users ASPX page by customizing the page in Sharepoint Designer and adding some Javascript:
http://c--shark.blogspot.com/2012/09/hide-advanced-search-button-on-users.html
------------------------------------
MDM / MDS Benefits and Implementation Costs
I am having a hard time finding examples of MDM and MDS benefits and implementation costs other those available from IBM http://www-01.ibm.com/software/data/master-data-management/overview.html.
Will someone, please, share examples of MDM/MDS benefits and implementation costs?
- Changed type Elvis Long Friday, September 21, 2012 9:19 AM better for discussion
Please Kill Desktop
Hello,
What is the point of the "Desktop" app? Why do programs need to launch in it? This is a horrible development.
Please kill the desktop app. Simply make the Start screen the desktop and be done with it.
Here is how it should work: If I launch Excel, simply launch Excel in a window. There is absolutely no need to launch Desktop then launch Excel. Then I would also be able to have Excel on 1/2 of my screen and see my live tiles updating in the other half and displaying information that I can use. Currently if I am actually performing work all the live tiles are hidden from view and essentially useless.
As part of killing off Desktop you also need to add in a minimize and close button on the corner of apps. It is far to difficult to close an app, especially on touch screens. Having to drag an app to the tray to close it simply takes to long.
~ Matt
- Changed type Arthur Xie Friday, September 14, 2012 7:53 AM
Reply:
Why would you want to be limited to a single Excel Window via the Metro interface? You realize you can't window metro applications, and you certainly can't window then to fill 1/2 of the screen. You also cannot display Metro on multiple monitors. Running Excel in the Start Screen would seriously cripple Excel.
Some brilliant people at Microsoft designed it to be that way based on some unknown user groups that said so.
------------------------------------
Reply:
------------------------------------
Reply:
Excel is desktop app and all desktop apps will run in desktop. What you are asking could be a good feedback for Office Team that they create Metro App version of Excel along with Desktop version of Excel like Internet Explorer which has both desktop and metro apps.
------------------------------------
Reply:
Hello,
What is the point of the "Desktop" app? Why do programs need to launch in it? This is a horrible development.
Please kill the desktop app. Simply make the Start screen the desktop and be done with it.
Here is how it should work: If I launch Excel, simply launch Excel in a window. There is absolutely no need to launch Desktop then launch Excel. Then I would also be able to have Excel on 1/2 of my screen and see my live tiles updating in the other half and displaying information that I can use. Currently if I am actually performing work all the live tiles are hidden from view and essentially useless.
As part of killing off Desktop you also need to add in a minimize and close button on the corner of apps. It is far to difficult to close an app, especially on touch screens. Having to drag an app to the tray to close it simply takes to long.
~ Matt
Some may have misunderstood your comments. I would try to provide an answer that may not be wholly satisfactory but represents what Win8 can and cannot do. The Start Screen is not really "Windows" as you knew it. It represents a very different application model layer (I did post a schematic in another thread) and applications running in it are supported by the WinRT API (which is fully compatible with the Win8 running in ARM processors, a version officially known as Windows RT). To get the full functionality of the desktop which is backwards compatible with all previous Win32-based versions of Windows, you have to go to the desktop.
Win8 is in fact, a "hybrid" OS, merging the attributes and properties of a "portable" OS (such as Android or iOS) with those a "desktop" OS. It works for some but not for others, I guess. I find it an amazingly bad compromise and a cynical ploy for Microsoft to intersect itself in the mobile consumer market, but this is just me. As you have seen here, there are others that are "enamored" with change (for change's sake).
So, in short, unless Microsoft totally recodes Win8, your request is impossible. You have to live within the limitations/capabilities of this OS, or, if you wish, remain with Win7. In fact, if you want to run desktop applications why did you even bother "upgrading" (sidegrading or downgrading work equally well here) to Win8? Were there any specific advantages that you wished to obtain?
------------------------------------
Reply:
Software is simply code and should make it simple and easy for users. There does not seem to be a logical reason that Microsoft could not launch Desktop app's in a Window in the Metro UI. If they need the Desktop Code, fine, but hide the experience from the user so that it is seamless. A user doesn't care about the difference between RT, desktop, metro and the rest - they simply want their user experiences to be easy and that is not what Microsoft has supplied. Forcing a user to constantly switch to/from Metro every time they want to launch a new app is pointless and frustrating.
I suppose that if Microsoft is going to remove the windowing feature from their OS then they should stop calling it "Windows".
Also, you can install Office 2013 now if you want - there is not a Metro version of any the 2013 Office products. That means that a Metro version would not be forthcoming until at least 2016 at which point we will be seeing Windows 9.
------------------------------------
Reply:
Software is simply code and should make it simple and easy for users. There does not seem to be a logical reason that Microsoft could not launch Desktop app's in a Window in the Metro UI. If they need the Desktop Code, fine, but hide the experience from the user so that it is seamless. A user doesn't care about the difference between RT, desktop, metro and the rest - they simply want their user experiences to be easy and that is not what Microsoft has supplied. Forcing a user to constantly switch to/from Metro every time they want to launch a new app is pointless and frustrating.
I suppose that if Microsoft is going to remove the windowing feature from their OS then they should stop calling it "Windows".
Also, you can install Office 2013 now if you want - there is not a Metro version of any the 2013 Office products. That means that a Metro version would not be forthcoming until at least 2016 at which point we will be seeing Windows 9.
Some very good points but here is the answer:
(a) The public schematics for Win8 (they are conjectures, MS has not released its own), indicate that the Start Screen cannot support desktop programs and one has to travel back and forth. Although I do take your point that "software is just code" and that it should be "easy for users", the fact remains that Win8 would need to be re-done to offer a unitary experience. This is not happening now.
(b) Even if Microsoft can retool everything, it does not want to. It wants users to have to be exposed to the "joys of Metro/Modern" and live in the Start Screen as much as possible as they can buy there apps from the Microsoft store (the walled garden of Metro delights). Thus, there are many reasons for Microsoft to retain the experience as it is today. User convenience does not figure in this calculation. Microsoft fully accepts the notion that the desktop experience has been partly degraded. Win8 was not supposed to be a "desktop" oriented OS anyway. Users should not buy it and install it if they want a pure desktop experience. For that, they should try to remain with Win7. I am not sure how long downgrade rights would be available, but my guess that they would be available as long as there is a good number of users demanding them.
(c) Even if there is a Metro version of Office 2013, would you want it? Would you want a complex computing experience moved into the simplistic "portable" experience? It would mean limited multitasking and no-windowing at all. In addition, the design guidelines for Metro would eliminate much of the visible command structure and one would have to menus "in depth". More clicks would be necessary to achieve the same result. Considering the fact that all current portable OSes (iOS, Android) have access to office suits that can open all the Office files, what would be the utility of "shrinking" Office for the Metro environment? More sales for Microsoft, possibly. But none in usability terms.
Thus, one needs to see Win8 for what it is. It may have specific utility in tablets (which remains to be seen) but at the desktop its utility is dubious.
------------------------------------
Conditional Formatting - Filter Values Using Two Web Parts
Criteria:
Trying to filter data in Course List by using data from User List therefore only showing data that is relevant to the User on screen i.e. NT_USER or [ME] in Sharepoint.
Goal:
To filter data according to 'Level' that a user is currently at..
Data Sets
User List
Name
Level
Course List
Course Name
Course Level
Filter values:
Level 1 then HIDE Level 2, Level 3
Level 2 then HIDE Level 3
No Hide on Level 3 since Level 3 should see all.
Any help would be greatly appreciated.
Reply:
Ultimately it would be:
Hide if [Course Level] is Greater than [User Level]...
I know in the conditional formmating area if I select the item in the row I can get the first two values of [Course Level] Is Greater Than... but I cannot figure out how to get [User Level] as the area to pull the filter value from.
So I guess my quesiton is really how would I create a Parameter that would reference the USER LIST:USER LEVEL ?
- Edited by design4fun Wednesday, September 12, 2012 8:08 PM
------------------------------------
Reply:
------------------------------------
Windows Vista Errors
Hi everybody, I'm having trouble with my Windows Vista right now, i just installed something (Alienware icon pack with installer) from this page http://free-premiumsoftware.blogspot.co.uk/2011/09/full-alienware-icon-pack-with-installer.html and after installing, it told me to restart my vista, after i logged in i get these errors:
- AtBroker.exe - Unable To Locate Component
This application has failed to start because KERNELBASE.dll was not found. Re-Installing the application may fix this problem.
- explorer.exe - Unable To Locate Component
This application has failed to start because KERNELBASE.dll was not found. Re-Installing the application may fix this problem.
- Transition Accessible technologies between desktops has stopped working
A problem has caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.
- Task Scheduler Engline has stopped working
A problem has caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.
And after logging in i only get a blank screen and my cursor and cant do anything
I tried running Windows with Safe Mode but it didn't do anything.
Does anybody know how to solve this?
I will appreciate any solution to this problem.
- Changed type Jeremy_Wu Tuesday, September 18, 2012 2:02 PM
Reply:
Then post in the Vista forums instead of the Windows 7 forums. This is a Windows 7 forum.
http://social.technet.microsoft.com/Forums/en-US/category/windowsvistaitpro
Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. "
------------------------------------
Remove deactivated members on DGs
Hello,
I use Exchange 2007 and when a user leave the company we move the users' accounts to a specific OU, we deactivate the AD account + deactive the mailbox from EMC.
The thing is that when I check members on Distribution List from EMC or extract the members, I still find the deactivated users (just present but do not recieve any mail).
Would you know any shell command to clean those deactivated account and let me extract my distributions lists with only the current members?
Thanks,
Graig
Reply:
Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
------------------------------------
Reply:
Sorry for the late reply! I was on vacation... Would you please help me out to build that script? I have no sufficient knowledge to create it on my own.
Many thanks,
Graig
------------------------------------
Reply:
I recommend that you start searching for scripts that do similar things and piece something together. If you have specific questions, post back here or, better, the Official Scripting Guys Forum.
Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
------------------------------------
NSLookup not resolving on client machines but ok on server and member server?
For some reason, today I am finding and many other colleagues that the nslookup function on the client machines are not resolving to the DNS. However, the Server or member servers have no problem. Only change has been the Windows 7 service pack update that was done recently on the client machines. Any help would be appreciated....
Thanks..
- Changed type Sean Zhu - Friday, March 18, 2011 3:08 AM no response
Reply:
probably clients do not have DNS server setup
provide ipconfig /all from both server and client
you can verify yourself if client has proper DNS setup in ipconfig /all
additionally verify that you do not block traffic on port 53
With kind regards
Krystian Zieja
http://www.projectnenvision.com
Follow me on twitter
My Blog
------------------------------------
Reply:
Post the error / results from nslookup in addition to the ipconfig information.
Besides the nslookup anomaly, are browser sessions working from the workstations?
/kj
Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
------------------------------------
Reply:
Hi Kevin,
Here is the NSlookup results:
DNS request timed out.
timeout was 2 seconds.
Default Server: UnKnown
Address: fe80::b810:7ef2:b9b3:2687
>
Here is the ipconfigall results:
Windows IP Configuration
Host Name . . . . . . . . . . . . : MPI-DTOP1
Primary Dns Suffix . . . . . . . : mpi.local
Node Type . . . . . . . . . . . . : Hybrid
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
DNS Suffix Search List. . . . . . : mpi.local
Ethernet adapter Local Area Connection:
Connection-specific DNS Suffix . : mpi.local
Description . . . . . . . . . . . : Realtek RTL8168D/8111D Family PCI-E Gigabit Ethernet NIC (NDIS 6.20)
Physical Address. . . . . . . . . : 00-24-1D-CE-77-A6
DHCP Enabled. . . . . . . . . . . : Yes
Autoconfiguration Enabled . . . . : Yes
IPv6 Address. . . . . . . . . . . : 2002:1840:6483:1234:add0:2d5f:95d5:3b55(Preferred)
Temporary IPv6 Address. . . . . . : 2002:1840:6483:1234:896:fd2b:8aff:615a(Preferred)
Link-local IPv6 Address . . . . . : fe80::add0:2d5f:95d5:3b55%11(Preferred)
IPv4 Address. . . . . . . . . . . : 10.10.227.100(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Lease Obtained. . . . . . . . . . : March-20-11 10:02:33 PM
Lease Expires . . . . . . . . . . : March-28-11 7:29:14 AM
Default Gateway . . . . . . . . . : fe80::21c:dfff:fecb:4849%11
10.10.227.1
DHCP Server . . . . . . . . . . . : 10.10.227.2
DHCPv6 IAID . . . . . . . . . . . : 234890269
DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-14-3A-7D-5B-00-24-1D-CE-77-A6
DNS Servers . . . . . . . . . . . : fe80::b810:7ef2:b9b3:2687%11
10.10.227.2
NetBIOS over Tcpip. . . . . . . . : Enabled
Connection-specific DNS Suffix Search List :
mpi.local
Tunnel adapter isatap.mpi.local:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . : mpi.local
Description . . . . . . . . . . . : Microsoft ISATAP Adapter
Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
Tunnel adapter Teredo Tunneling Pseudo-Interface:
Media State . . . . . . . . . . . : Media disconnected
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
As for browser sessions, yes all is working fine..
thx
------------------------------------
Reply:
Is your server SBS and if so what version?
Is your DHCP server 2008 or 2008 R2?
If so, check the cleint configuration and ensure that for both ipv4 and ipv6 that the DNS servers are configured by the DHCP lease.
/kj
Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
------------------------------------
Reply:
In my case, DHCP for v4 and v6 is enabled and both Scopes have Search List enabled and identical, but still does not work. Same results on WIN7 or Server2008R2. In both cases, the "Search List" setting in the registry fixes the issue, however this is not a good work-aroun as it potentially requires multiple GPO's for different scopes in different child domains. WHy does the DHCP Search list not work?
BillR
------------------------------------
Reply:
For those that want to use the registry fix fo the "Search List", enter the domain search list under the 'Paramaters' key as a value for the DWORD:SearchList.
HKLM\System\CurrentControlSet\Services\TcpIP\Parameters\SearchList; values: domain1.local, domain2.local, etc...
Do the same with the ..\Services\TcpIP6\Paramater\SearchList key
BillR
------------------------------------
how to retrieve image from library to info path.
Hi all,
I am having a SharePoint 2010 document library which contains images. Those are Certification images. I am having a multiple choice Control on my info path form. When Someone click on Sales force or Java respective image has to display.
I use hard coaded images and apply rules. that work fine but how to retrive those images from library.
Please give me a work around for this.
Thanks in Advance.
Amol
amol
Reply:
You can use a hyperlink for this, so as long as you have the hyperlink to each image, you can accomplish this.
- Add a hyperlink field to your image library, and each hyperlink just has to be a hyperlink to the image itself.
- Pull that hyperlink field into InfoPath in a data connection to the pic library.
- From the data source pane on the right, right-click on the Hyperlink field, and choose Picture.
Laura Rogers
Rackspace: SharePoint Consulting
Blog: http://www.wonderlaura.com
Twitter: WonderLaura
Books:Beginning SharePoint 2010: Building Business Solutions with SharePoint
Using InfoPath 2010 with Microsoft SharePoint 2010 Step by Step
------------------------------------
Storage Services: Differences in ATA, SATA, SCSI, & Fibre Channel
- Using WINSERVER2012 RC 8400
- Abit IP35PRO XE Motherboard w Intel Core2 Quad Q9450
- OS is installed on an SSD connected via SATA cable to SATA II port on motherboard.
- 1 Supermicro 8-Port SATA Card - AOC-SAT2-MV8 - connected via PCI1 slot
- 1 Highpoint 8-port SATA Card - RocketRaid 1820A - connected via PCI2 slot.
- 1 500GB Seagate SATA HD connected to each SATA card, total = 2 HD with 1TB storage.
In Storage Services:
- the HD connected to the AOC-SAT2-MV8 displays its BUS as Fibre Channel
- the HD connected to the RocketRaid displays its BUS as SATA
- the SSD connected to the SATA II port on motherboard displays its BUS as ATA.
In the system BIOS, all the drives appear as SCSI devices. Therefore, I was expecting all three interfaces to display the BUS as either SCSI or SATA. Can anyone explain to me why the motherboard shows ATA and one of the cards shows Fibre Channel?? No where in the product docs for the AOC-SAT2-MV8 does it even mention the word Fibre.
Thanks!
- Changed type Vincent Hu Tuesday, August 28, 2012 4:49 AM
Reply:
I made a similar observation here: http://social.technet.microsoft.com/Forums/en-US/winserver8gen/thread/578a4c17-ed61-4d1a-837b-bdde46f2e7fe
My Supermicro AOC-SASLP-MV8 disks appear as RAID, but they are SATA disks on a PCIe SAS controller (no RAID functionality is available)
My RAIDCore disks appear as Fibre Channel (this is a PCIe RAID controller)
My motherboard disks (with the Supermicro BIOS set to Intel RAID mode) appear as RAID - probably correct
------------------------------------
Reply:
Thanks for the info David:
In your post, you mentioned a Supermicro AOC-SASLP-MV8 (with 8 SATA ports on PCIe for $100). Do you think this card would make a good replacement for my AOC-SAT2-MV8 card? You said the drives display as RAID - does it say they are on a shared bus? I would like to set up a cluster between two machines running WINSERVER2012 RC 8400 - if I purchased two identical AOC-SAT2-MV8 cards and installed one card in each machine, do you think I'll be able to set up a cluster?
Thanks
------------------------------------
Reply:
The AOC-SASLP-MV8 (3Gb, $100) and its replacement AOC-SAS2LP-MV8 (6Gb, $200) are both straight SAS PCIe cards, vs. the AOC-SAT2-MV8 (SATA). I don't know if they support shared SAS storage, but they may well do.
However, you will not be able to use Storage Spaces clustered storage without all the pieces being SAS dual-path: dual-port SAS disks, dual SAS connections (through expanders if necessary) to the disks, and a SAS PCIe card in each server for each path. SATA disks are just single port so won't work.
I am only using SATA disks, with reverse breakout cables to SAS backplanes with individual connections. I am not using SAS expanders, dual connections, or dual-port SAS disks. For me, these cards were just the cheapest way of adding 16x SATA disks over 2x PCIe slots. I am then using Storage Spaces to provide software RAID5 on a single server.
I have successfully tested the Starwind HA iSCSI target to then provide shared iSCSI storage on top of two separate DAS arrays and servers for a cluster witness and a CSV for shared storage. You can then run SOFS on top of this (in VMs, to avoid the Hyper-V loopback issue), and finally use SOFS as an SMB3 target for VMs. A total HA solution done with just two physical servers and no physical shared storage.
- Edited by David Trounce Monday, August 27, 2012 9:32 PM
------------------------------------
Reply:
- Using WINSERVER2012 RC 8400
- Abit IP35PRO XE Motherboard w Intel Core2 Quad Q9450
- OS is installed on an SSD connected via SATA cable to SATA II port on motherboard.
- 1 Supermicro 8-Port SATA Card - AOC-SAT2-MV8 - connected via PCI1 slot
- 1 Highpoint 8-port SATA Card - RocketRaid 1820A - connected via PCI2 slot.
- 1 500GB Seagate SATA HD connected to each SATA card, total = 2 HD with 1TB storage.
In Storage Services:
- the HD connected to the AOC-SAT2-MV8 displays its BUS as Fibre Channel
- the HD connected to the RocketRaid displays its BUS as SATA
- the SSD connected to the SATA II port on motherboard displays its BUS as ATA.
In the system BIOS, all the drives appear as SCSI devices. Therefore, I was expecting all three interfaces to display the BUS as either SCSI or SATA. Can anyone explain to me why the motherboard shows ATA and one of the cards shows Fibre Channel?? No where in the product docs for the AOC-SAT2-MV8 does it even mention the word Fibre.
Thanks!
It's up to driver what bus type to report (see below). It's not a big deal to report FC for SATA or SCSI for say USB: whole Windows storage stack talks SCSI and only lowest driver in the stack provides a convertion from SCSI to device-specific command set.
//// Define the different storage bus types
// Bus types below 128 (0x80) are reserved for Microsoft use
//
typedef enum _STORAGE_BUS_TYPE {
BusTypeUnknown = 0x00,
BusTypeScsi,
BusTypeAtapi,
BusTypeAta,
BusType1394,
BusTypeSsa,
BusTypeFibre,
BusTypeUsb,
BusTypeRAID,
BusTypeiScsi,
BusTypeSas,
BusTypeSata,
BusTypeSd,
BusTypeMmc,
BusTypeVirtual,
BusTypeFileBackedVirtual,
BusTypeMax,
BusTypeMaxReserved = 0x7F
} STORAGE_BUS_TYPE, *PSTORAGE_BUS_TYPE;
Hope this helped :)
-nismo
------------------------------------
Reply:
Nismo:
Thanks for the input! I apologize for the delay - I was consumed with deployment issues the past few weeks. I'm going to check out Starwind's products and see if I can find something to improve/modernize my system.
------------------------------------
Errata for 70-642 Self-Paced Training Kit, 2nd Edition
I just received another email from O'Reilly informing me of the September 2012 reprint of the 2nd Edition of the 70-642 Self-Paced Training Kit. This reprint corrected numerous reported errata.
However, unless you have the most recent reprint edition of this book, your text will not have the corrected errata, so here are the errata on the oreilly.com site.
Better yet, you can buy the 70-642 Training Kit as an e-book from oreilly.com, and you will always be informed when a corrected reprint is released so you can download it for free.
I hope you find this information useful.
Exchange 2007 peer mail servers
Please I just ran across the term Exchange 2007 peer mail server and I feel dumb but have no idea what is meant by this
Could some give quick explanation?
Reply:
Mobile OWA For Smartphone
www.leederbyshire.com
email a@t leederbyshire d.0.t c.0.m
------------------------------------
Reply:
Lee
I thought the same thing. I am setting up AVST's CallXpress Unified Messaging and documentation mentioned Exchange peer mail servers and I could not find anything and thought well AVST has its own terminology which they need to articulate in their documentation
thanks for quick response
------------------------------------
Reply:
They are UM specific terminologies.
VMSC - VMD - Messaging - Servers Tab
Use the Messaging dialog box, Servers tab to view a list of the Modular Messaging servers and primary peer Exchange servers for a voice mail domain. The peer server is the message store server that MASs communicate with when sending and receiving voice messages.
Understanding Peer Servers
When initially installed, an MAS is configured to have a single Microsoft Exchange server handle message storage and processing for subscribers. This Exchange server is known as the primary peer server. Each MAS in the system configuration has an assigned primary peer server, though all MASs may share the same primary peer server.
You can identify and configure additional peer servers within the voice mail domain that can handle messaging on behalf of subscribers, if the primary peer server fails. Thus, if the primary peer server for an MAS fails, the MAS can search for another peer server to allow messaging to continue. Each MAS in the system is assigned its own list of non-primary peer servers for backup relief.
James Chong MCITP | EA | EMA; MCSE | M+, S+ Security+, Project+, ITIL msexchangetips.blogspot.com
------------------------------------
The new hotmail sucks
- Moved by JOshiro Wednesday, September 12, 2012 3:57 PM Hotmail question (From:Live Connect)
Reply:
This is not the Hotmail forum. Please post this there instead:
http://answers.microsoft.com/en-us/windowslive/forum/hotmail-email/
------------------------------------
installation and configuration Active directory in win 2008 R2
- Moved by Mike Kinsman Wednesday, September 12, 2012 3:51 PM off topic (From:TechNet Website Feedback)
Reply:
Unfortunately your post is off topic here, in the TechNet Site Feedback forum, because it is not Feedback about the TechNet Website or Subscription.
You may want to try asking your question at http://answers.microsoft.com.
For more information about where to post your question please see this thread: http://social.technet.microsoft.com/Forums/en-US/tnfeedback/thread/24ee65e4-0f35-403c-9bf7-41333cd13cb5
Moving to off topic.
Thanks, Mike
MSDN and TechNet Subscriptions Support
Read the Subscriptions Blog!
------------------------------------
How to get Live performance usage of VM's hosted in Hyper V by using SCOM
Hey guyz, we have a Hyper -V host with lot of VM's hosted in it.
We have SCVMM to manage the Hyper -V,
and we also have SCOM integrated with SCVMM.
Im completely new to this scenario, and i got the task of getting VM's Live Performance Details like CPU Usage, Network Usage,Disk Read and Write, Memory usage. Can anyone guide me how to achieve it.
and one more thing, all of these things i need to do using C#,
Please help me guyz, im totally blind in this scenario.
- Moved by Daniele Muscetta Wednesday, September 12, 2012 3:49 PM Not an APM question - potentially related to VMM integration. (From:Operations Manager - Application Performance Monitoring (APM))
Reply:
Hi,
From APM (Application Performance Monitoring) standpoint, - and currently you're asking the question in this branch, - you may achieve the information you're looking for by collecting APM statistics.
In this case you need to push SCOM 2012 Agent to each server you want to monitor (APM Agent will be deployed there automatically, if there is no Intercept Agent 5.7 installed), to configure APM monitoring, to enable System Center Management APM service and to check out statistics you get in AppDiagnostics. The statistics packages are sent automatically on time interval regardless monitoring apps activity.
Here is the blog article how to enable APM monitoring in SCOM 2012 (it's written for RC, but still actual for RTM):
http://www.viacode.com/blog/blog/2011/12/15/.net-avicode-apm-monitoring-in-scom-2012-rc-quick-look
On the other hand I believe you may grab all those metrics by creating regular SCOM rules separately to APM monitoring. In this case it's better to ask the question on general SCOM forum.
Igor Savchenko, VIAcode Consulting LLC (http://www.viacode.com/solutions)
- Edited by Igor Savchenko Wednesday, September 12, 2012 11:51 AM
------------------------------------
Reply:
hey Igor, i can get the details as you said above in app diagnostics. Every thing is configured Up and runnign properly
but i need to access the above data from c#, so i was looking for any SCOM API or any other thing by which i can access the above information into my program.
please help me brother..
------------------------------------
Reply:
Syed,
albeit this is the forum on application performance monitoring, you should really be leveraging the Operations Manager and VMM integration. But this is not the right forum for that and the solution suggested by Igor is sub-optimal for this scenario.
There is plenty of information on the web http://www.bing.com/search?q=monitoring+hyper-v+scom and there are more specific forums even on the "general" forums i.e. http://social.technet.microsoft.com/Forums/en-US/operationsmanagergeneral/threads or http://social.technet.microsoft.com/Forums/en-US/category/virtualmachinemanager
There is another thread I am aware of, which I also moved recently to another forum that was mis-posted here, which is kind of related http://social.technet.microsoft.com/Forums/en-US/operationsmanagerextensibility/thread/52e85ff2-d368-43fc-8d06-0668500db20a
For this reason, I am also going ahead and moving this thread to OPSMGR - General.
Thanks,
------------------------------------
Problem with building LIS on RHEL 6 2.6.32 based kernel
I'm trying to build LIS v3.3, but when I staring rpmbuild I get next error:
+ make -C /usr/src/kernels/2.6.32-379.1.1.lve1.1.9.4.el6.x86_64 M=/home/dkasyanov/rpmbuild/BUILD/hv/obj/default modules
make: Entering directory `/usr/src/kernels/2.6.32-379.1.1.lve1.1.9.4.el6.x86_64'
CC [M] /home/dkasyanov/rpmbuild/BUILD/hv/obj/default/netvsc_drv.o
In file included from /home/dkasyanov/rpmbuild/BUILD/hv/obj/default/include/linux/hyperv.h:206,
from /home/dkasyanov/rpmbuild/BUILD/hv/obj/default/hyperv_net.h:29,
from /home/dkasyanov/rpmbuild/BUILD/hv/obj/default/netvsc_drv.c:41:
/home/dkasyanov/rpmbuild/BUILD/hv/obj/default/include/linux/hv_compat.h:37: error: redefinition of 'skb_frag_page'
include/linux/skbuff.h:1637: note: previous definition of 'skb_frag_page' was here
/home/dkasyanov/rpmbuild/BUILD/hv/obj/default/include/linux/hv_compat.h:42: error: redefinition of 'skb_frag_size'
include/linux/skbuff.h:148: note: previous definition of 'skb_frag_size' was here
make[1]: *** [/home/dkasyanov/rpmbuild/BUILD/hv/obj/default/netvsc_drv.o] Error 1
make: *** [_module_/home/dkasyanov/rpmbuild/BUILD/hv/obj/default] Error 2
make: Leaving directory `/usr/src/kernels/2.6.32-379.1.1.lve1.1.9.4.el6.x86_64'
error: Bad exit status from /var/tmp/rpm-tmp.WDUZFd (%build)
How can I fix this error and build LIS?
Reply:
------------------------------------
Reply:
I'm trying to build LIS v3.3, but when I staring rpmbuild I get next error:
. . .
How can I fix this error and build LIS?
Are you see this thread?
LIS v3.4 can solve Youre problem?
------------------------------------
Reply:
This issue is solved with LIC 3.4 (look at source in include/linux/hv_compat.h:)
#if defined(RHEL_RELEASE_VERSION) && (RHEL_RELEASE_CODE < 1539) static inline struct page *skb_frag_page(const skb_frag_t *frag) { return frag->page; } static inline unsigned int skb_frag_size(const skb_frag_t *frag) { return frag->size; }
No comments:
Post a Comment