AppFabric Cache Management cmdlet – v1.1
Please find below, updated version of cmdlet published on my AppFabric Cache management cmdlet post:
#################################################################
# AppFabricCacheSetup.ps1 PowerShell Cmdlet #
#################################################################
# Prepares your AppFabric Cache Cluster environment for #
# development. #
#################################################################
# Fatih Boy, April 2010 #
# Version 1.1 #
#################################################################
Import-Module DistributedCacheAdministration
Use-CacheCluster
$cacheName= Read-Host "Please enter cache name to create (press enter to use default)"
if($cacheName -ne ""){
New-Cache $cacheName
}
if ((Get-CacheAllowedClientAccounts) -notcontains $env:username) {
Grant-CacheAllowedClientAccount $env:username
}
Start-CacheCluster
if($cacheName -ne ""){
Write-Host ""
Write-Host "$cacheName cache properties : "
Write-Host "----------------------------------"
Get-CacheConfig $cacheName
}else{
Write-Host ""
Write-Host "default cache properties : "
Write-Host "----------------------------------"
Get-CacheConfig default
} Related posts:
- AppFabric Cache Management cmdlet
- AppFabric Cache Yönetim cmdlet’i – 1.1
- AppFabric Cache Yönetim cmdlet’i
- Tip : IIS 7 ve Asp.Net için AppFabric Cache Erişim Yetkisi
- PowerShell ile AppFabric Cache Yönetimi
- AppFabric Cache için geliştirme ortamının hazırlanması
- AppFabric Beta 2 Cache yapılandırma problemleri
- AppFabric Cache ve Yüksek Erişilebilirlik
- AppFabric Beta 2 is out!
- AppFabric Önbellek Mimarisi – 2



April 1, 2010 









Android işletim sistemli cep telefonunuz var, peki Enterprisecoding Android uygulamasını denediniz mi? Enterprisecoding web sitesini her yerden takip edebileceğiniz, offline
No comments yet... Be the first to leave a reply!