0
Posted on 7:17 AM by Softminer and filed under

run in the Developer Command Prompt for Visual Studio
to get workspaces on your computer and getting collection name 

tf workspaces

result will be like 

Workspace     Owner      Computer Comment
------------- ---------- -------- ---------------
DEV2           Your Name COMPUTERNAME

DEV2           Your Name COMPUTERNAME

after that run following command:

tf workspaces /updateComputerName:MyOldComputerName 
/s:"http://MyServer:8080/tfs/MyCollection"

https://www.visualstudio.com/docs/tfvc/workspaces-command

0
Posted on 7:04 AM by Softminer and filed under

If you receive Windows Update error 0x800F081F or 0x800F081F it means that a file needed by Windows Update is damaged or missing. Windows has troubleshooting tools that can help you address this problem.

Run the DISM tool

1. Insert your Windows 10 DVD, or double click its ISO image, or insert your bootable flash drive with Windows 10, depending on what you have. you can click on ISO image and choose amount

2. Open 'This PC' in File Explorer and note the drive letter of the installation media you have inserted. In my case it is disk I:
3. Open CMD with administrative privileges and type the following command:
Dism /online /enable-feature /featurename:NetFx3 /All /Source:X:\sources\sxs /LimitAccess

Replace X with your drive letter for Windows 10 installation media.
https://winaero.com/blog/offline-install-of-net-framework-3-5-in-windows-10-using-dism/

Microsoft linke

the fie i have on my onedrive
0
Posted on 9:35 AM by Softminer and filed under ,

Project management is the application of knowledge, skills, tools, and techniques to project activities to meet the project requirement. project management is accomplished through the application the appropriate application and integration of the 42 logically grouped project management processes comprising the 5 process Groups. these 5 process Groups are:


  • Initiating
  • Planning
  • Executing
  • Monitoring and Controlling and
  • Closing


Managing a project typically include:

Identifying the various needs, concerns, and expectations of the stakeholder as the project is planned and carrier out.

Balancing the competing project constraints including, but not limited to:


  • Scope
  • Quality
  • Schedule
  • Budget
  • Resources and
  • Risk
0
Posted on 6:04 AM by Softminer and filed under

DECLARE @DBName varchar(255)
DECLARE @LogName varchar(255)
DECLARE @DATABASES_Fetch int
DECLARE DATABASES_CURSOR CURSOR FOR
    select distinct
        name, db_name(s_mf.database_id) dbName
    from
        sys.master_files s_mf
    where
        s_mf.state = 0 and -- ONLINE
        has_dbaccess(db_name(s_mf.database_id)) = 1 -- Only look at databases to which we have access
    and db_name(s_mf.database_id) not in ('Master','tempdb','model')
    and db_name(s_mf.database_id) not like 'MSDB%'
    and db_name(s_mf.database_id) not like 'Report%'
    and type=1
    order by 
        db_name(s_mf.database_id)
OPEN DATABASES_CURSOR
FETCH NEXT FROM DATABASES_CURSOR INTO @LogName, @DBName
WHILE @@FETCH_STATUS = 0
BEGIN
 exec ('USE [' + @DBName + '] ; DBCC SHRINKFILE (N''' + @LogName + ''' , 0, TRUNCATEONLY)')
 FETCH NEXT FROM DATABASES_CURSOR INTO @LogName, @DBName
END
CLOSE DATABASES_CURSOR
DEALLOCATE DATABASES_CURSOR