I am considering creating and sharing SCUP catalogs
I have an otherwise discarded x64 capable computer I can run SCUP on and expose catalogs on.
I have several rules and goals in mind.
All source be from Independent Software Vendor (ISV) locations. preferably ssl locations
All source signed by ISV, (exe, msi, msp)
No reposting of licensed catalogs allowed
Create catalogs and encourage Vendors to vet then maintain catalogs.
Encourage Vendors to make single file full updates in MSI, MSP or exe formats. Not web installers that install a shim.
I want to do in priority, Oracle JAVA 6/7, Adobe Acrobat 9.x, Adobe Shockwave 11, Adobe Air 3.x, Apple QuickTime, Apple iTunes, Mozilla Firefox, Google Chrome.
Share test results.
I would like to have mini communities of say Java or Shockwave update expert forums
Can I elicit your help?
Bart
Reply:
That sounds great! Are you still planning to move forward with this?
------------------------------------
Office Communicator should have Status Update Service
Reply:
Mike Stacy | http://mikestacy.typepad.com
------------------------------------
Public folder issue in Exchange System Administrator
I have Exchange 2003 SP2 running on Small Business Server 2003 SP2. In Exchange System Manager. When I try to see properties from a public folder under <Organization>\Administrative groups\first administrative group\Servers\<Server name>\first storage group\Public folders storage(server name)\Public Folders
This error is shown
Exchange System manager
Error HTTP: 405
Id Nº: c1030af4
And in \first administrative group\folders\public folders
Error HTTP 501
Id: c1030af7
This is a translate from a Spanish installation
What is wrong? Can anybody help me?
Thanks in advance
Reply:
It seems to be a problem with ExAdmin. Both your error messages are here: Troubleshooting Microsoft Exchange System Manager Public Folder Expansion Problems
c1030af4 > http://technet.microsoft.com/en-us/library/aa996098(EXCHG.65).aspx#Errorc1030af4
c1030af7 > http://technet.microsoft.com/en-us/library/aa996098(EXCHG.65).aspx#Errorc1030af7
Jesper Bernle | Microsoft Community Contributor 2011 Awardee
------------------------------------
File transfers to Hyper-V VM's cause explorer to hang on host
I am having a very odd issue with some of our Hyper-V environments. Sometimes when a file transfer is initiated over the network from either another server (not a VM) or workstation to one of the VM's the system where the file transfer is originating from hangs. I'm able to pull up task manager and it shows that explorer.exe is not responding. If I try to end explorer.exe or do anything else in the system, nothing works. The system responds to mouse clicks but any command to do anything (reboot, shut down, run command prompt, etc) does not respond.
So far this has happened about 5 times within a month but it is rather critical when it does occur. The only way to get the system to respond back is to hard power it off. We do not do a whole lot of network file copies but when we do the file sizes are rather large (anywhere from 4gb - 40gb). I haven’t been able to find ANY consistency with the issue either. It does not happen all the time or from the same server\workstation. It seems rather sporadic. Doing the same type of file transfers to standalone servers works just fine and has never had a problem with that. Only transferring to the VM's.
Our Hyper-V setup is as follows:
3 Hyper-V servers hosting a total of 12 VM's. 2 Of the servers are brand new Intel s3420GPLX (Xeon x3470, 16GB RAM) and one is a Asus P5K/EPU (Intel Core 2 Quad, 8GB). I have seen this issue happen to VM's on each host.
Copying data from the VM seems to work fine every time. This has only occurred when transferring files TO the VM over the network.
If anyone has any suggestion or has seent his before, we would like to solve this ASAP.
Reply:
------------------------------------
Reply:
Cheers,
Benjamin Armstrong
============================
Windows Virtualization
Senior Lead Program Manager
This posting is provided AS IS with no warranties, and confers no rights. You assume all risk for your use.
------------------------------------
Reply:
I will give the hotfix a shot but in reading the description it sounds like the opposite of what were experiencing.
In the KB article is says you have to restart the virtual machine to recover from this issue whereas in our situation we have to restart the computer that initiated the file transfer.
------------------------------------
Reply:
------------------------------------
hide wireless security key?
Is there a way to block this access? In an office environment where only sys admins know the wpa key, and eneter it in for all users. We dont want any users to know the key.
thanks for the help! Loving windows 7 so far!
- Changed type Ronnie VernonMVP Wednesday, February 4, 2009 5:34 AM Unanswered
Reply:
------------------------------------
Reply:
------------------------------------
Reply:
I found if you enable UAC and drop the account to a standard user you are prompted for admin credintials when you try to unhide the key.
This doesnt help me, but hopefully it works out for someone else. This should be an easy GP\Reg greyout but looks defective by design.
------------------------------------
Reply:
Well if you are concerned then we have a solution when I got wireless at my property then I also felt the requirement to hide the wireless key and eventually I spent some time and found the solution I hope you are also going to take help from it and going to appreciate
If you require some more security option then you can check these links also
How can I secure my wireless network?
------------------------------------
Reply:
UAC is disabled in my OU of our forest, yet when I click on the corporate wireless properties I get the "These settings are managed by your system administrator" message. The Networking and Sharing center is still availabe to me and I've set up several wireless conncetions with no problems of any kind. Most of the settings tab contents are grayed out, one of them of course is displaying the key.
The upshot from this is, there is a way for it to be configured, and at a ganularity MUCH finer than simply hiding the sharing center as the post from Amar contends.
I'll check with our GP guru to see if I can find out where/what needs to be set.
Lets face it, Windows ships "wide open" not to make it easy to hack, but to provide maximum usability to the end user (mom & pop, daughter, brother, aunt, uncle), and that end users experience is what sells product. Its up to the deployment/networking/GP gurus to lock the stuff down for the corporate environment, create their own "packagedbuilds" to deploy, and manage the users experience in a way that it "just works" when they need it to, and won't allow them to escape corporate boundaries when inside the domain.
Some would call this an oversight on Microsofts part, I'd call it good business sense, AND it helps keep us IT types employed.
DAS
------------------------------------
Time Dimension SQL
Thanks to Vinay Valeti and Mangal Pardeshi for making this happen
SQL for creating Time Dimesnion
WITH SRI as ( SELECT Cast ('1900-01-02' as DateTime) Date --Start Date UNION ALL SELECT Date + 1 FROM SRI WHERE Date + 1 < = '2020-12-31' --End date ) SELECT Row_Number() OVER (ORDER BY Date) as DateId ,Date ,YEAR (date) as Year, DATENAME(DW,date)+','+DATENAME(MM,date)+' '+DATENAME(DAY,date)+' '+DATENAME(YEAR,date) as DateName, CAST(CAST(YEAR(date)as varchar(4))+'0101' as datetime ) as Year1, +'Calendar '+DATENAME(YEAR,date) as YearName, CAST(cast(YEAR(date)as varchar(4))+right('0'+cast(((((DATEPART(month,date)-1)/6))*6)+1 as varchar(2)),2)+'01' as datetime ) as Halfyear, CAST(cast(year(date)as varchar(4))+RIGHT('0'+CAST(((DATEPART(qq,date)-1)*3)+1 as varchar(2)),2)+'01' as datetime) as quarterdateitme, +'Quarter'+CAST(DATENAME(QUARTER,date)as varchar(20))+', '+DATENAME(YEAR,date) as quarterName, CAST(cast(YEAR(date)as varchar(4))+right('0'+cast(((((DATEPART(month,date)-1)/4))*4)+1 as varchar(2)),2)+'01' as datetime ) as Trimester, +'Trimester'+cast(((((datepart(month,date)-1)/4)))+1 AS varchar(1))+', '+cast(YEAR (date) AS varchar(4)) as Trimester_Name1, +'Semester '+cast(((((datepart(month,date)-1)/6)))+1 AS varchar(1))+', '+cast(YEAR (date) AS varchar(4)) as HalfYear_Name, CAST(cast(YEAR(date)as varchar(4))+right('0'+cast(((((DATEPART(month,date)-1)/6))*6)+1 as varchar(2)),2)+'01' as datetime ) as Half_Year, CAST(CAST(year(date)as varchar(4))+RIGHT('0'+cast(month (date) as varchar(2)),2)+'01' as datetime) as Monthdatetime, CAST(DATENAME(MM,CAST(CAST(year(date)as varchar(4))+RIGHT('0'+cast(month (date) as varchar(2)),2)+'01' as datetime))as varchar(20))+', '+DATENAME(YEAR,date) as Month_Name, +'WEEK'+CAST(DATENAME(WEEK,date)as varchar(20))+', '+DATENAME(YEAR,date) as weekname, date as week, DatePart (dy, date) as Day_Of_Year, +' Day '+cast((datepart(dy,date)) as varchaR(50)) as Day_Of_Year_Name, Datediff(dd,CAST(cast(YEAR (date) AS varchar(4))+'0'+cast(((((datepart(month,date)-1)/6))*6)+1 AS varchar(1))+'01' as datetime),date)+1 as Day_Half_Year_Name ,Datediff(dd,CAST(cast(YEAR (date) AS varchar(4))+'0'+cast(((((datepart(month,date)-1)/4))*4)+1 AS varchar(1))+'01' as datetime),date)+1 as Day_Of_Trimester ,datediff(dd,dateadd(qq,datediff(qq,0,date),0),date)+1 as Day_Of_Quarter ,+'Day '+Cast((Datediff(dd,CAST(cast(YEAR (date) AS varchar(4))+'0'+cast(((((datepart(month,date)-1)/6))*6)+1 AS varchar(1))+'01' as datetime),date)+1) as varchar(3)) As Day_Of_Half_Year_Name ,+'Day '+Cast((Datediff(dd,CAST(cast(YEAR (date) AS varchar(4))+'0'+cast(((((datepart(month,date)-1)/4))*4)+1 AS varchar(1))+'01' as datetime),date)+1) as varchar(3)) As Day_Of_Trimester_Name ,+'Day '+CAST((datediff(dd,dateadd(qq,datediff(qq,0,date),0),date)+1)as varchar(3)) As Day_Of_Quarter_Name ,DAY(date) as Day_Of_Month ,+'Day '+cast(DAY(date)as varchar(50)) as Day_Of_Month_Name ,DATEPART(dw,date) as Day_Of_Week ,+'Day '+CAST(DATEPART(dw,date) as varchaR(50)) as Day_Of_Week_Name ,DATEPART(week,date) as Week_Of_Year ,+'WEEK '+CAST(DATEPART(week,date) as varchar(50)) as Week_Of_Year_Name ,DATEPART(MM,date) as Month_Of_Year ,+'Month '+CAST(DATEPART(MM,date)as varchar(50)) as Month_Of_Year_Name ,Datediff(MM,CAST(cast(YEAR (date) AS varchar(4))+'0'+cast(((((datepart(month,date)-1)/6))*6)+1 AS varchar(1))+'01' as datetime),date)+1 as Month_Of_Half_Year ,+'Month '+CAST((Datediff(MM,CAST(cast(YEAR (date) AS varchar(4))+'0'+cast(((((datepart(month,date)-1)/6))*6)+1 AS varchar(1))+'01' as datetime),date)+1)as varchar(50)) AS Month_Of_Half_Year_Name ,Datediff(MM,CAST(cast(YEAR (date) AS varchar(4))+'0'+cast(((((datepart(month,date)-1)/4))*4)+1 AS varchar(1))+'01' as datetime),date)+1 as Month_Of_Trimester ,+'Month '+CAST((Datediff(MM,CAST(cast(YEAR (date) AS varchar(4))+'0'+cast(((((datepart(month,date)-1)/4))*4)+1 AS varchar(1))+'01' as datetime),date)+1)as varchar(50)) as Month_Of_Trimester_Name ,datediff(MM,dateadd(qq,datediff(qq,0,date),0),date)+1 Month_Of_Quarter ,+'Month '+CAST((datediff(MM,dateadd(qq,datediff(qq,0,date),0),date)+1)as varchar(50)) as Month_Of_Quarter_Name ,datediff(MM,dateadd(qq,datediff(qq,0,date),0),date)+1 Quarter_Of_Year ,+'Quarter '+CAST((datediff(MM,dateadd(qq,datediff(qq,0,date),0),date)+1) as varchar(50)) as Quarter_Of_Year_Name INTO TimeDimension2 -- Name of the Table FROM SRI OPTION (MAXRECURSION 0)
Sri.Tummala
- Changed type Darren GosbellMVP Tuesday, December 20, 2011 5:55 AM This is not a question, just helpful information for others
Exchange 20120 Best Practice Analyzer
- Edited by DG1212 Monday, December 19, 2011 4:09 PM
Reply:
Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
------------------------------------
Migrated from SBS2003 to SBS2011 Outlook 2007/2010 clients on the lan keep enabling "Connect to Microsoft Exchange using HTTP.
Wade Harris
Reply:
You might want to post this in the SBS Forum: http://social.technet.microsoft.com/Forums/en/smallbusinessserver/threads
Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
------------------------------------
Powerpivot for Sharepoint
Please share installtion steps for Powerpivot - Sharepoint 2010 SP1 using SQL Server 2012 RC0.
Gone through the Deployment checklist but end up of getting following errors during the farm configuration through Powerpivot Configuration tool
1. Unable to Update of Secure Store service Master Key.
2. Launch of Central Administration getting 503 error , when IIS application pool identity is changed to LocalSystem "unable to connect configuration database". Log shows NT AUTHORITY\SYSTEM cannot connect to Sharepoint database. Domain user with admin rights is being used for installation and same is being mentioned for various inputs during the install.Do we need to create any additional users if so with what permissions?
Reply:
After spending hours found that NT AUTHORITY \SYSTEM user in SQL Server 2012 RC0 did not have any permissions.
Added following permissions and error went away.
------------------------------------
Lsas.Blaster.Keylogger removal guide
http://darfuns.com/remove-trojan-lsas-blaster-keylogger/
Reply:
i have this virus rigth now and i try to deleted but is imposivble. i need help . or i go to broke this laptop who send this virus why microsoft dont tell this to all world and find the responsable
------------------------------------
Reply:
Hi Try following these steps.
1. Open Task Manager (CTRL+SHIFT+ESC)
Stop these Lsas.Blaster.Keylogger processes:
unins000.exe
VDoca582.exe
2. Delete these Lsas.Blaster.Keylogger DLL files::
mozcrt19.dll
sqlite3.dll
3. Open Registry Editor and Remove these Lsas.Blaster.Keylogger Registry Entries:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run “Virus Doctor”
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Virus Doctor_is1
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\User Agent\Post Platform “URVDoc[]”
4. Delete Following Files.
%UserProfile%\Application Data\Virus Doctor\uill.ini
c:\Documents and Settings\All Users\Application Data\System Data Configuration\DB.ini
c:\Documents and Settings\All Users\Application Data\System Data Configuration\fsvd6398.db
c:\Documents and Settings\All Users\Application Data\System Data Configuration\config.cfg
c:\Documents and Settings\All Users\Application Data\927e\Languages\VDDe.lng
c:\Documents and Settings\All Users\Application Data\927e\System Data Configuration\DBInfo.ver
c:\Documents and Settings\All Users\Application Data\927e\Languages\VDFr.lng
c:\Documents and Settings\All Users\Application Data\927e\Languages\VDIt.lng
c:\Documents and Settings\All Users\Application Data\927e\System Data Configuration
c:\Documents and Settings\All Users\Application Data\927e\System Data Configuration\vd952342.bd
c:\Documents and Settings\All Users\Application Data\System Data Configuration
Let me know if this works
------------------------------------
Exchange Management Shell Broken after Quest ActiveRoles Management Shell for Active Directory installed
We installed the Quest ActiveRoles Management Shell for Active Directory 1.5.1 on our terminal server and suddenly our Exchange Management Shell is broken with this error:
==========================================================
Exception calling "GetComputerSite" with "0" argument(s): "Configuration system failed to initialize"
At C:\Program Files\Microsoft\Exchange Server\V14\bin\ConnectFunctions.ps1:164 char:92
+ $localSite=[System.DirectoryServices.ActiveDirectory.ActiveDirectorySite]::GetComputerSite <<<< ()
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : DotNetMethodException
The following exception was thrown when trying to enumerate the collection: "Configuration system failed to initialize"
.
At C:\Program Files\Microsoft\Exchange Server\V14\bin\ConnectFunctions.ps1:253 char:17
+ $search.FindAll <<<< ()
+ CategoryInfo : NotSpecified: (:) [], ExtendedTypeSystemException
+ FullyQualifiedErrorId : ExceptionInGetEnumerator
You cannot call a method on a null-valued expression.
At C:\Program Files\Microsoft\Exchange Server\V14\bin\ConnectFunctions.ps1:146 char:33
+ $siteName = $siteDN.ToString <<<< ().SubString(3).Split(",")[0]
+ CategoryInfo : InvalidOperation: (ToString:String) [], RuntimeException
+ FullyQualifiedErrorId : InvokeMethodOnNull
WARNING: No Exchange servers are available in the Active Directory site . Connecting to an Exchange server in another
Active Directory site.
Failed to connect to an Exchange server in the current site.
Enter the server FQDN where you want to connect.:
==========================================================
We have since uninstalled the Quest add-in but with no success....
Our environment is as follows:
We have 1 root domain and 2 sub domains (Site A and B).
Site A: Exchange 2003
Site B: Exchange 2010
Our terminal server (Site A, Ex 2k3) is managing Exchange 2010 on Site B. This worked flawlessly prior to the quest install. Please help
Thanks in advance...
SMGrow
Unable to open Hotmail messages or folders
- use IE instead of FF
- on the phone for an hour with HP customer support
- reboo, ran with safe mode etc
- run malware, checked firewalls etc
- used all the suggestions listed on forums by moderators
- cleared cache, recent history etc
- checked if active x was enabled
- installed updated IE and FF
- disabled add-ons such as facetweak, which seem to cause problems overall
- started the netbook in safe mode
- HP today said using https would help versus http, it did not
- uninstalled Live Essentials, then installed the new version
- running the latest FF and IE version
Very annoying and has been happening since a Hotmail update around two days ago.
I appreciate any feedback. Thanks.
- Moved by Mike Kinsman Monday, December 19, 2011 3:57 PM off topic (From:TechNet Website Feedback)
Reply:
Post this question in the Windows Live Help Center at the following address
Provide detailed informations about the problem (any error message too).
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
------------------------------------
Reply:
I did that already, with the exact info as above.
No one replied except other frustrated Hotmail users who were not able to see their messages.
- Edited by NMRR68 Saturday, December 17, 2011 6:57 PM
------------------------------------
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!
------------------------------------
Can i track WM_INITMENU & WM_EXITMENULOOP messages of any application?
Dear Friends,
I am making an utility of Keyboard that supports Indian Language . i hook the keyboard using user32 API and change its output to some special characters.
Now my problem is :
When i press alt+f , alt+e it doesn't gives output like original
I want to return original output of keyboard(e.g. Us English) when Menubar is selected.
When I monitor message using spy++ and i got :
when menu shows then WM_INITMENU message is received.
when menu selects then WM_MENUSELECT message is received.
when menu exits then WM_UNINITMENUPOPUP message is received.
when user come out from menuloop then WM_EXITMENULOOP message is received.
Can i track WM_INITMENU & WM_EXITMENULOOP messages ? how?
or Is there any api to track WM_INITMENU/ WM_EXITMENULOOP messages)
Waiting for your Helpful hands,
sumitbhai
sunitsarode@gmail.com
- Moved by Wang Huang Wednesday, November 23, 2011 4:49 AM off topic (From:MSDN, TechNet, and Expression Profile and Recognition System Discussions)
Reply:
Hello,
Thank you for your post! Depending on your question, would you Please check if one of below forums is the proper place to post it?
http://social.msdn.microsoft.com/Forums/en/category/visualstudio
http://social.msdn.microsoft.com/Forums/en-SG/category/smartdevicedevelopment
http://social.msdn.microsoft.com/Forums/pl-PL/category/officedev
Hope this helps you.
Have a great day!
Judan
------------------------------------
Reply:
Try posting this question in the "General Windows Desktop Development Issues" Forum at the following address
http://social.msdn.microsoft.com/Forums/en-us/windowsgeneraldevelopmentissues/threads
Bye.
Luigi Bruno - Microsoft Community Contributor 2011 Award
------------------------------------
Exchange server 2010
so sory! delete please!
- Edited by Ozgur Sahin Monday, December 19, 2011 4:11 PM
Reply:
Gulab | MCITP: Exchange 2010-2007 | Lync Server 2010 | Windows Server 2008 | Skype: Exchange.Ranger | Blog: www.ExchangeRanger.Blogspot.com
------------------------------------
Reply:
Hi,
Did you see this - http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/51b9f958-0ed4-45d4-a0f4-b853f0ade2e2
Leif
------------------------------------
how to Create/Modify user profile data and write them back to external business system?
Hi,
I read the statement " You can populate the properties of existing user profiles from a business system. You cannot create new user profiles in this manner, and you cannot write data back to a business system." from the following article:
http://technet.microsoft.com/en-us/library/gg188041.aspx
But unfortunately, i was suppossed to overcome this limitation. Now i need to write the user profile data back to my external business system. Is there any workaround for this?
Any timely help would be greatly appreciated.
Thanks,
PVSAVSG.
Reply:
Microsoft Certified Master - SharePoint 2010, SharePoint MVP and Solutions Architect
http://www.wictorwilen.se/
Author of SharePoint 2010 Web Parts in Action
------------------------------------
Reply:
Hi wictor,
Thanks for the suggestion.
Can u explain elaborately, how i can achieve this?
i mean is there any event reciever to raise or is there any web service available? and are there any resources that i can dig into to learn much about this?
Thanks,
PVSAVSG.
- Edited by pvsavsg Monday, December 19, 2011 1:00 PM
------------------------------------
Reply:
Nope, no events. You have to iterate/query all the user profiles yourself.
Microsoft Certified Master - SharePoint 2010, SharePoint MVP and Solutions Architect
http://www.wictorwilen.se/
Author of SharePoint 2010 Web Parts in Action
------------------------------------
LZS221 compression/decompression algorithm
- Changed type Gaurav Gaikwad Friday, August 12, 2011 2:07 PM
- Moved by litdev Friday, August 19, 2011 6:52 PM Not a SmallBasic question (From:Small Basic)
Reply:
Hi Gaurav,
Thanks for your post.
Can you provide us more information?
That will help us relocate you to the right direction.
Have a nice day.
Thanks
Liam Huang
STO Application Team
Server and Tools Online Operations Team
------------------------------------
Reply:
actually, I taking the backup of my data using backup tool but because file corruption i cant restore it back, when i dig into that file with help of MTF
specification i found data but it cannot be understandable, because this includes some LZS-221 compression algorithm i search but i didnt find yet...
------------------------------------
More than two NICs on my Server
Hello Experts,
I have a commnunication issue. In summary, I have more than two NICs on my Server pointing to different networks in my DMZ network. Network is looks like;
|Server Having two NIC's|
|Internet|----|Default GW10.X.97.130|-----|NIC-1-10.X.97.141-------NIC-210.x.98.141|-----|GW=Blank|-----|MPLS|---|Branch office|
In the above topology, I am trying to access the brand office application, but I can't! When I try to tracert the branch office IP , then the server send the packets towards the Internet Default GW, which is 10.x.97.130, though I left the Default GW blank in the NIC-2 facing towards the branch office. I have added static routes all the way upto the branch office in my routing table on the server, but no joy. Your help will be appreciated
Rgds
Hid
- Changed type Tiger LiMicrosoft employee Thursday, December 22, 2011 9:23 AM
Reply:
Hello,
Can you please post the destination (branch office) ip address and the server's routing table?
------------------------------------
Reply:
You can only have one default gateway per machine, not one per interface. If the target is not directly reachable through a NIC in the machine, the packet will be sent to to the default gateway.
Even if the target is directly reachable (ie in the same IP subnet as a NIC in the machine) it will only use that path if the name of the target machine resolves to the "correct" IP address. If its name resolves to an IP in some other IP subnet, the packet will go to the default gateway.
Bill
------------------------------------
Reply:
Just to add, the default gateway, besides only one being allowed on any machine as BIll said, must be on the outside interface. Therefore, based on the way you've described your current setup, it seems the one with the MPLS must have the default gateway, and the internal interface must be blank.
Otherwise, if the gateway needs to on the internal side, then what's happening is traffic going to somewhere outside of the network is using that gateway on the internal interface. So that says there is a router on the 10.x side?
Otherwise, the gateway needs to be on the outside interface.
Ace Fekay
MVP, MCT, MCITP EA, MCTS Windows 2008 & Exchange 2007 & Exchange 2010, Exchange 2010 Enterprise Administrator, MCSE & MCSA 2003/2000, MCSA Messaging 2003
Microsoft Certified Trainer
Microsoft MVP - Directory Services
Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
This posting is provided AS-IS with no warranties or guarantees and confers no rights.
------------------------------------
Reply:
Hi Hid,
Thanks for posting here.
> I am trying to access the brand office application, but I can't! When I try to tracert the branch office IP , then the server send the packets towards the Internet Default GW, which is 10.x.97.130, though I left the Default GW blank in the NIC-2 facing towards the branch office. I have added static routes all the way upto the branch office in my routing table on the server, but no joy.
Could you show us the “route print” results here ? that should help us to determine if the route entries were been properly set and bind to the correct interface.
Meanwhile, the articles below is also for you reference :
Default Gateway Configuration for Multihomed Computers
http://support.microsoft.com/kb/157025/en-us
Implementing IP Routing
http://technet.microsoft.com/en-us/library/cc750576.aspx
Thanks.
Tiger Li
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.
------------------------------------
mobile, mobile... oh mobile
http://www.engadget.com/2011/11/25/microsoft-lync-coming-to-android-blackberry-ios-and-windows-ph/
Is this talking only about IM or there will be also A/V supported?
bostjanc
Reply:
just IM and audio i understand... video will be unsupported *for now*
Also i heard it will be released for iphone, android and ios on Dec 16th.
DURP
- Edited by Zabulon Tuesday, November 29, 2011 5:23 PM typo
------------------------------------
Reply:
DURP
------------------------------------
Reply:
Dec 12th? Strange... On this site: http://lync.microsoft.com/en-us/Product/UserInterfaces/Pages/lync-2010-mobile.aspx it's still written: comming soon for android and ios OS.
bostjanc
------------------------------------
recommend handheld
- Changed type Tony Chen CHN Friday, December 16, 2011 9:35 AM hardware recommend
- Moved by Max Meng Monday, January 2, 2012 8:47 AM Off-topic (From:Outlook IT Pro Discussions)
Reply:
Hi,
Thank you for your post here.
This is the forum to discuss questions and feedback for Microsoft Outlook, better to post it to the major handhelds PDA manufacturers' forum to get some suggestion.
The reason why we recommend find the PDA vendor source is you will get the most qualified pool of respondents here and many things are out of Microsoft's control (like PDA hardware update, Business Strategy of PDA vendor, etc.). Thank you for your understanding.
Tony Chen
TechNet Community Support
------------------------------------
Mysterious Ribbon Issue - no recognition of focus change
i have multi list views added (less than 25) to one page.
clicking in the lowest View and clicking new in the ribbon the correct form opens.
Changing to another list above and getting back. The Form of the first list opens and not the correct one.
The loading Icon is visible only the first time using the lowest List and after that on using the lists, which are above that on the page.
That issue happens on different pages, ut not all.....
For testing purpose i deleted the List View Webpart of the "lower" list and recreated it. Everythings worked until i moved the part to its origin location at the bottom of the page.
All Views are located in the same content area....
Are there any hints or has any other faced this too?
Best regards
c_loki
- Changed type c_loki Monday, December 19, 2011 8:36 AM no results
Reply:
Did you create the page via SharePoint Designer ?
Do you get a javascript error on the bottom of the screen ?
What browser are you using ?
Using SP1 ?
Regards, Marijn Somers|| http://www.beyond-it.be || Twitter: http://twitter.com/marijnsomers || http://marijnsomers.blogspot.com
- Edited by Marijn SomersMVP Monday, October 31, 2011 8:11 AM
------------------------------------
Reply:
Hi Marijn,
we are using SP1 CU July
The pages are created in SPD.
A script error was not visible until now, but for that hint i enabled the scripdebuging....
we are using IE 7-9 the Issue seems to be consistent....
best regards
C_loki
------------------------------------
Reply:
Hello C_loki,
1. All the list views you add need to be in a web part zone:
<WebPartPages:WebPartZone runat="server" FrameType="None" ID="Main1" Title="loc:Main1">
<ZoneTemplate>
<WebPartPages:XsltListViewWebPart ...>
...
</WebPartPages:XsltListViewWebPart>
<WebPartPages:XsltListViewWebPart ...>
...
</WebPartPages:XsltListViewWebPart>
</ZoneTemplate>
</WebPartPages:WebPartZone>
2. Upgrade to October 2011 Update
| SharePoint Foundation 2010 | SharePoint Server 2010 |
If above suggestions don't resolve the issue, please feel free to visit the link below and see if any paid support option available may suit your needs:
http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone
However, other members of the community may still have encountered the issue you're seeing, and have a solution to offer!
Regards,
Jing Wang | Microsoft Online Community Support
- Edited by Jing Wa - MSFTMicrosoft employee Monday, November 21, 2011 6:41 PM
------------------------------------
Reply:
Hello Jing,
we forwarded the issue to MS Support.
It has been forwarded to some specialists, but until now no news.
Best regards.
------------------------------------
Reply:
------------------------------------
No comments:
Post a Comment